mui.ajax 如何调用webservice

前端之家收集整理的这篇文章主要介绍了mui.ajax 如何调用webservice前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


document.getElementById("confirm").addEventListener('tap',function() {
var respnoseEl = document.getElementById("response");
respnoseEl.innerHTML = '正在请求中...';
mui.ajax('http://192.168.0.79:8080/SMSService.asmx/Request',{
data: {
'_arg0: username',
'_agr1: password'
},213)">dataType: 'json',//服务器返回json格式数据
type: 'post',//HTTP请求类型
timeout: 10000,//超时时间设置为10秒;
success: function(data) {
//服务器返回响应,根据响应结果,分析是否登录成功;
respnoseEl.innerHTML = 'w...';
error: function(xhr,type,errorThrown) {
//异常处理;
debugger
respnoseEl.innerHTML = xhr.statusText+'**'+errorThrown;
console.log(type);
}
});

})(mui);

猜你在找的Ajax相关文章