我是angularjs2的新手。尝试使用jsonp
在api上发布数据。在这里,我打电话给api:
let url = 'http://localhost/TestApp.Web.Api/api/user';
let body = JSON.stringify(user);
let headers = new Headers({'Content-Type': 'application/json'});
let options = new RequestOptions({headers:headers});
this.jsonp.post(url,body,options)
.map(this.extractData)
.catch(this.handleError)
.subscribe();
我已经通过fiddler对api进行了测试,并且使用相同的数据工作得很好。但是如果我提交的数据正在显示
无法发布/注册
有什么建议吗?