Angular 2 - 意外的令牌<在位置0的JSON中

时间:2016-07-21 21:32:45

标签: angularjs json angular laravel-5.2

我正试图在Laravel 5.2上向我的RESTful api发帖。但在控制台中显示:

  

"意外的令牌<在JSON的位置0"

以下是代码:

private post(post: Post): Promise<Post> {
    let headers = new Headers({
  'Content-Type': 'application/json'});
    return this.http
               .post(this.url+'courses', JSON.stringify(post ||  null), {headers: headers})
               .toPromise()
               .then(res => res.json().data)
               .catch(this.handleError);
}
有人可以帮帮我吗?感谢。

0 个答案:

没有答案