网站后台成功的返回json数据,ajax使用get请求直接跳转到error,
mui.ajax('url是正确的完全没问题浏览器调试可正常返回json',{
dataType:'json',
type:'get',
timeout:10000,
success:function(data){
var list=document.getElementById("list");
var finallist='';
for(i=data.length-1;i>=0;i--){
finallist=finallist+'¥
';
}
list.innerHTML=finallist;
},
error:function(){
plus.ui.toast('123');
}
})
})
json返回的是一个二维的json,需要如何处理???
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
学习是最好的投资!