cordovaHTTP.post身体参数未被发送

时间:2017-07-25 20:32:18

标签: cordova cordova-plugins

尝试使用cordovaHTTP.post方法。它正好击中我的服务器(基于节点/快速),但是,req.body是空的。这是我正在使用的代码:

            let url = "http://192.168.51.77:8000/beacon/detected";
            let data = {
                someData: 'foobar'
            };
            let headers = {
                'Content-Type': 'application/json'
            };
            cordovaHTTP.post(url, data, headers,
                function (response) {
                    // Create tag to display beacon data.
                    var element = $(
                        '<div>'
                        // + JSON.parse(response.headers)
                        + JSON.parse(response.data).data.content[0].body
                        + '</div>' 
                    );
                    $('#kne-response').html(element);
                },
                function (response) {
                    console.error(response.error);
                });

0 个答案:

没有答案