zoukankan      html  css  js  c++  java
  • MUi 框架ajax请求WebService接口

    mui.init();  

                mui.plusReady(function()  

                {  

                    document.getElementById('login').addEventListener('tap',function()  

                    {  

                        var UserName=document.getElementById("account").value;    

                        var Userpassword= hex_md5(document .getElementById("password").value);            

                        mui.ajax('http://XXXXX/Login.asmx/MgLogin',  

                        {                 

                                data:"{'loginname':'"+UserName+"','password':'"+Userpassword+"','identifies':'123456','code':''}",                        

                                type:'POST',//HTTP请求类型  

                                dataType:'json',//服务器返回json格式数据  

                                timeout:10000,//超时时间设置为10秒;  

                                headers:{'Content-Type':'application/json'},                    

                                success:function(data)  

                                {  

                                    //服务器返回响应,根据响应结果,分析是否登录成功;  

                                    var jsons=data.d;  

                                    var str=JSON.parse(jsons);  

                                    if(str["StatusCode"]=="200")  

                                    {  

                                        mui.alert("登陆成功");  

                                    }else  

                                    {  

                                        mui.alert("登陆失败");    

                                    }  

                                },  

                                error:function(xhr,type,errorThrown)  

                                {  

                                    //异常处理;                               

                                    mui.alert(type);  

                                    console.log(type);  

                                }  

                        });   

                    });  

                });  

  • 相关阅读:
    CCCC L3-015. 球队“食物链”(dfs+剪枝)
    【USACO2.1】解题报告
    【USACO2.1】解题报告
    序列【模拟】
    序列【模拟】
    【JZOJ5184】Gift【DP】【01背包】
    【JZOJ5184】Gift【DP】【01背包】
    【JZOJ5177】TRAVEL【并查集】
    【JZOJ5177】TRAVEL【并查集】
    【JZOJ5178】So many prefix?【KMP】【DP】
  • 原文地址:https://www.cnblogs.com/alice-you/p/7908394.html
Copyright © 2011-2022 走看看