嗨,我在尝试使用 easyXDM 发出 PUT 请求时遇到了一个非常奇怪的问题。
that.xhr.request({
url: url,
method: "PUT",
data: [{"foo":"test"}],
headers: { "Content-Type": "application/json;" }
}, function (response, xhr) {
options.success(jQuery.parseJSON(response.data));
},function(err) {
alert(err);
});
这不会生成请求正文消息,而是将数据视为查询字符串参数。对此有什么可以做的吗?谢谢