我是angular2原生脚本编程的新手。我需要从我的应用程序将数据发布到特定网址。当我尝试发布数据然后在控制台Response with status: 200 for URL: null
上收到消息。这条消息的含义是什么?我应该怎样做才能成功发布请求..?
//我的代码
let headers = new Headers({ "Content-Type": "application/json" });
let options = new RequestOptions({ headers: headers });
let body =
{
"firstName": "boby",
"lastName": "samuels",
"Location": "UK"
};
this.http.post("http://example.com", JSON.stringify(body), options)
.subscribe(result =>
{
console.log("response : "+result);
}, error =>
{
console.dir(error);
});
请帮帮我。