我有一个客户端功能,它调用Azure移动服务(AMS)API来更新我的一个AMS表中的列:
azureMobileClient.updateCustomerUser = function (phonenumber, UpdatedJson) {
azureMobileClient.azureMSC.invokeApi("customer", {
parameters: {
phonenumber: phonenumber, jsondata: JSON.stringify(UpdatedJson)
},
method: "put"
}).done(function (results) {
console.log("updated customer json", UpdatedJson);
console.log("updated customer result", results.result);
}, function (error) {
alert(error.message);
});
}
这是Azure门户网站上我的API中的exports.put代码:
exports.put = function(request, response) {
console.log("customer/put");
var phonenumber = request.query.phonenumber;
var jsondata = request.query.jsondata;
console.log("customer/put phonenumber: " + phonenumber);
console.log("customer/put jsondata: " + jsondata);
console.log("customer/put request.query.jsondata: " + request.query.jsondata);
request.service.tables.getTable('User').where({ phonenumber: phonenumber, usertype: "300" }).read({
success: function(result) {
//Does not exist and nothing to update; return error
if (result.length === 0) {
console.log("customer/put: item does not exist");
response.send(statusCodes.NOT_FOUND, {message: "customer/put: item does not exist and not thing is updated"});
}
//Exists; update it
else {
console.log("customer/put: item exists ");
result[0].userjsondata = jsondata;
request.service.tables.getTable('User').update(result[0]);
response.send(statusCodes.OK, result[0]);
}
}
});
};
我正在尝试更新我的AMS表格列中的一个' put' stringify json(' JSON.stringify'),带有一些注入的阿拉伯字符。
我的主要问题是stringfied json中的阿拉伯字符在从API调用返回时会损坏。
这是console.log输出,显示执行API函数之前和之后的字符串:
答案 0 :(得分:2)
我怀疑您遇到问题,因为您在查询字符串而不是请求正文中传递更新参数。尝试像这样调用API:
azureMobileClient.azureMSC.invokeApi("customer", {
body: { phonenumber: phonenumber, jsondata: JSON.stringify(UpdatedJson) },
method: "put"....
然后在服务器脚本中引用request.body
而不是request.query
。