指引网

当前位置: 主页 > 服务器 > Nginx >

mui ajax 带header 提交

来源:网络 作者:佚名 点击: 时间:2017-08-02 23:29
[摘要] mui ajax 带header 提交
var server=”http://apis.baidu.com/apistore/stockservice/hkstock?stockid=00168&list=1”;//获取升级描述文件服务器地址
function update(){
mui.ajax(
server,{
dataType:’json’,//服务器返回json格式数据
type:’post’,//HTTP请求类型
timeout:10000,//超时时间设置为10秒;
success:function(data){
alert(JSON.stringify(data));
},
error:function(xhr,type,errorThrown){
//异常处理;
console.log(type);
},
headers: {
“Access-Control-Allow-Headers”:”X-Requested-With”,
“apikey”:”2a4469adb23039b30b55b5970e34f5ac”
}

});
}

mui.plusReady(update);
------分隔线----------------------------