在其他手机浏览器和iphone的微信中都没问题,只有在安卓的微信中会返回error,XMLHttpRequest.status 为 200, XMLHttpRequest.readyState 为 4,textStatus 为 parsererror ,请问这个可能是什么原因?-------------------------------------测试发现6.0版本的微信没有这个问题
$(document).on('click', '.formdialog', function () {
var obj = $(this);
var formobj = $(this.form);
$.ajax({
type: 'POST',
url: formobj.attr('action') + '&handlekey=' + formobj.attr('id') + '&inajax=1',
data: formobj.serialize(),
dataType: 'xml'
}).success(function (s) {
var content = s.lastChild.firstChild.nodeValue;
content= replaceJs(content);
localStorage.removeItem("temreplymessage");
evalscript(s.lastChild.firstChild.nodeValue);
}).error(function(XMLHttpRequest, textStatus, errorThrown) {
alert(XMLHttpRequest.status);
alert(XMLHttpRequest.readyState);
alert(textStatus);
});
return false;
});
返回的数据对吗,能正确转成xml吗
同样。微信ajax发送获取xml数据,年前一直没问题,微信版本已更新后就parseerror了。
容我说句脏话。他老母的微信!!!!!!!!
------切割线------------
刚才尝试了下解决了。
我用的xml是一个标签简单套了下面几个子标签,可能不是辣鸡微信要求的标准版本xml。
所以解析错误。
然后去掉了dataTpe:'xml' ok了!