Hbuilder app開發,使用mui.ajax和服務器交互


.mui.ajax的寫法:

var inpt_mobile = document.getElementById("inpt_mobile");
var inpt_pwd = document.getElementById("inpt_pwd");
url:"http://***.***.***.***:8080/Smart_Toilet2/a",
        type:'post',
        data:{
            username:inpt_mobile.value,
            password1:inpt_pwd.value,
        },
        dataType:'text',
        timeout:10000,
        success:function(res){
      
        },
        //異常處理
        error:function(e){
            console.log(e);
        }
})

servlet的寫法:

String a = request.getParameter("username");
        System.out.print(a);

 

獲取后台數據mui.ajax的寫法:

function login() {
    var uname=document.getElementById("username").value.trim();
    var pwd=document.getElementById("password").value.trim();
    mui.toast("0 "+uname+" "+pwd);
    
    mui.ajax(
        'http://192.168.63.2:8080/ServletTest/servlet/AjaxTest',{
        data: {
            uname:uname,
            pwd:pwd
        }, 
        dataType: 'text',
        type: 'post',
        timeout: 10000,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded'
        }, 
        success: function(data) {
            mui.toast("success "+data);
        },
        error: function(xhr, type, errorThrown) {
            mui.toast("error "+type);
            console.log(xhr,type,errorThrown);
        }
    });
}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM