尝试使用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);
});