我在官网上边将跨域的header头部写上了 还是报error abort 的错误 求指教求指教
以下是代码
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Hello avst</title>
<meta http-equiv="Access-Control-Allow-Origin" content="*">
<meta http-equiv="content-security-policy">
<meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!--ajax 跨域解决办法-->
<!--标准mui.css-->
<link rel="stylesheet" href="css/mui.min.css">
<link rel="stylesheet" href="css/iconfont.css">
<!--App自定义的css-->
<link rel="stylesheet" type="text/css" href="css/app.css"/>
</head>
<script>
mui.ajax('http://avst.tv/avstAPP/web/index.php?s=Index/getuserInfo',{
data:{
id:1
},
dataType:'json',
type:'post',
timeout:'5000',//超时时间设置5秒
success:function(data){
mui.alert('123123121');
},
error:function(xhr,type,errorThrown){
console.log(type);
mui.toast('获取参数失败');
}
});
</script>
有一段时间是不存在这个问题的 但是将ajax的返回的对象进行循环的时候 就出现跨域的问题
0 个回复