在http2 Nativescript中响应的http post请求

时间:2017-09-08 07:16:01

标签: http angular2-routing nativescript angular2-services

我是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);
                     });

请帮帮我。

0 个答案:

没有答案