gpt4 book ai didi

jquery - Android jquery ajax 错误长度要求

转载 作者:行者123 更新时间:2023-11-30 04:42:06 25 4
gpt4 key购买 nike

我有一段代码适用于除 Android 浏览器以外的大多数浏览器。在 Android 上,如果抛出以下错误:“需要长度”

安卓操作系统:2.2jQuery: 1.5.1

$.ajax({
type: "put",
url: '/offers/' + offer.offer_data.id + '/delete_active',
success: function(){
alert('success');
},
error:function(XMLHttpRequest,textStatus, errorThrown) {
alert("Error status :"+textStatus);
alert("Error type :"+errorThrown);
alert("Error message :"+XMLHttpRequest.responseXML);
}
});

提前致谢。

最佳答案

添加虚拟参数数据解决了这个问题。在这篇文章中找到了答案 http://weblogs.asp.net/gabriellopez/archive/2010/03/12/jquery-web-service-invocation-411-length-required-error.aspx

$.ajax({
type: "put",
url: '/offers/' + offer.offer_data.id + '/delete_active',
data: "{ blank:'blank' }",
success: function(){
alert('success');
},
error:function(XMLHttpRequest,textStatus, errorThrown) {
alert("Error status :"+textStatus);
alert("Error type :"+errorThrown);
alert("Error message :"+XMLHttpRequest.responseXML);
}
});

关于jquery - Android jquery ajax 错误长度要求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5808963/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com