我已将 Angular 2 应用程序更改为 RC。在我包含 HTTP_PROVIDER 并创建 service.ts 之前它运行良好。
我收到一个错误
(index):14 Error: SyntaxError: Unexpected token <(…)
我似乎无法发现原因。有人能帮忙吗 ?
这是我的 service.ts 代码
/**
* Created by Adjoa on 5/29/2016.
*/
import {Injectable} from "@angular/core";
import {Http,Headers,HTTP_PROVIDERS} from "@angular/http";
import { Headers, RequestOptions } from '@angular/http';
@Injectable()
export class SignInService {
constructor(private _http: Http){}
postData(data:any){
const body = JSON.stringify(data);
const headers= new Headers();
headers.append('Content-Type','application/json');
return this._http.post('https://testing-angular-2.firebaseio.com/datatest.json', body, {headers:headers});
}
}