1

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});
    }
}
4

1 に答える 1