请有人帮忙。
在调用get API时遇到了麻烦。
获取错误作为意外令牌。
我犯了什么错误。
以下是我的服务方法:
get_tq() {
let headers = new Headers();
headers.append('Content-Type', 'application/json');
// this.createAuthorizationHeader(headers);
return this.http.get(this.base_url + "learnchapter/get", { headers: headers })
.map((res: Response) => res.json().Results||[]);
}
And Components.ts方法:
this.service.get_tq().subscribe(data => {
let objResponse:tResponse =data;
if (objResponse.Code==200)
{
this.profile = data.Results;
console.log(this.profile);
this.profile.forEach((value, key) => {
this.profileInfo.push(value);
}); }
else if (objResponse.Code==403)
{
// $('#m1Modal').modal('hide');
this.toastr.error("Record already exists");
}
});
和HTML代码:
<ng-container *ngFor="let profiles_Result of profileInfo">
<tr >
<td>{{profiles_Result.}}</td>
<td>{{profiles_Result.chaptername}}</td>
<td>{{profiles_Result.parentflag}}</td>
<td>{{profiles_Result.teacherflag}}</td>
</tr>