我需要幫助解決我的錯誤。 我用angular2工作,我得到錯誤。EXCEPTION:位置10的JSON中意外的令牌n
import { Injectable } from '@angular/core';
import {Http} from '@angular/http';
import 'rxjs/add/operator/map';
@Injectable()
export class PeopleService {
constructor(private _http: Http) { }
fetchPeople(){
return this._http.get('/assets/people.json')
.map(res => res.json());
}
enter image description here};
您可以發佈您JSON和你確認它是有效的? –
你可以使用http://jsonlint.com/來測試你的JSON –
而你的問題是... –