我正试图在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);
}
有人可以帮帮我吗?感谢。