angular2 – Angular 2没有提供商Http

前端之家收集整理的这篇文章主要介绍了angular2 – Angular 2没有提供商Http前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我得到的EXCEPTION:没有提供商Http!在我的Angular 2.我做错了什么?
import {Http,Headers} from 'angular2/http';
import {Injectable} from 'angular2/core'


@Component({
    selector: 'greetings-ac-app2',providers: [],templateUrl: 'app/greetings-ac2.html',directives: [NgFor,NgModel,NgIf,FORM_DIRECTIVES],pipes: []
})
export class GreetingsAcApp2 {
    private str:any;

    constructor(http: Http) {

        this.str = {str:'test'};

        http.post('http://localhost:18937/account/registeruiduser/',JSON.stringify(this.str),{
                headers: new Headers({
                    'Content-Type': 'application/json'
                })
            });
import { HttpModule } from '@angular/http';

@NgModule({
    imports: [ BrowserModule,HttpModule],declarations: [ AppComponent ],bootstrap: [ AppComponent ]
})
export default class AppModule { }

platformBrowserDynamic().bootstrapModule(AppModule);

理想情况下,您将这个代码分成两个单独的文件
详情请:

> https://angular.io/docs/ts/latest/cookbook/rc4-to-rc5.html
> https://angular.io/docs/ts/latest/guide/ngmodule.html

原文链接:https://www.f2er.com/angularjs/146962.html

猜你在找的Angularjs相关文章