当我将发布请求发送到我的Rest服务时,它会在正文中找到空值。有人看到这可能是什么错误吗?
function execute_postNewUser(tempo_id, tempo_date, callback){
// create the JSON object
var args = {
data : {
'id' : tempo_id,
'date' : tempo_date
},
headers : {"Content-Type": "application/json"}
};
console.log('JSON OBJECT ' + args.data);
client.post('http://localhost:49952/api/values', args, function(data,response){
console.log(data);
console.log(response);
});
}
Here is a capture of the powershell
数据应该是tempo_id值和tempo_date值,但是args.data只是给我[Object,Object]。
Rest服务是功能性的,但仅从该请求接收Null数据。