こんにちは、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);
});
これはリクエスト本文メッセージを生成せず、代わりにデータをクエリ文字列パラメーターとして扱います。これに関して何かできることはありますか?thnx