我在寻找解决方案时找到了这个链接。它建议在版本 1.4.x 中进行错误修复。那是一个非常旧的版本,我还没有修复吗?
下面的代码在采用完全相同的请求参数的 GET 上完美运行。我如何调用 DELETE 方法?
var data = {
accessToken : accessToken
}
$.ajax({
type : 'DELETE',
url : "/user/" + userId,
cache : false,
data : data,
success : function(profile) {
$("#account-delete .response-container").html(JSON.stringify(profile, null, 2));
$("#account-delete .request-container").html("/user/?" + $.param(data));
},
error : function(jqXHR, textStatus, errorThrown) {
$("#account-delete .error-container").html(textStatus +" - " + errorThrown);
}
});