10

我正在使用 jQuery Mobile 1.3.1 和 jQuery JavaScript Library v1.9.1 开发一个 PhoneGap 应用程序。我有一个带有用户名和密码的登录表单。有一个 JSON api 可以发送和接收用于处理登录的 JSON 数据。

我使用以下 JavaScript 进行 ajax 登录。

$('#submit').bind('click', function(e)  {
    e.preventDefault();
    $.ajax({
        type       : "POST",
        url        : "http://domainx/public/login",
        xhrFields  : {withCredentials: true},
        crossDomain: true,
        beforeSend : function() {$.mobile.showPageLoadingMsg();},
        complete   : function() {$.mobile.hidePageLoadingMsg();},
        data       : {username : 'subin', password : 'passwordx'},
        dataType   : 'json',
        success    : function(response) {
            console.error(JSON.stringify(response));
        },
        error      : function() {
            console.error("error");
        }
    });
});

这是我的登录表单的 html 代码。

<div data-role="content">
     <form id="login-form" data-ajax="false" method="post">
        <fieldset>
           <input type="text" name="username" id="username" value="subin" placeholder="Username">
           <input type="password" name="password" id="password" value="passwordx" placeholder="Password">
           <input type="button" data-theme="b" name="submit" id="submit" value="Enter" data-icon="plus">
        </fieldset>
     </form>
  </div>

但这只是行不通。服务器返回登录失败错误,尽管它适用于其他应用程序。

4

3 回答 3

7

你有几个错误是你的代码:

  1. 将日期更改为数据

    data       : {username : 'subin', password : 'passwordx'},
    
  2. 删除此行,它将阻止 Phonegap 成功发布:

    xhrFields  : {withCredentials: true},
    
  3. 在你的 beforeSend 和 complete 中使用这个函数来显示加载器:

    $.mobile.loading('show');
    

    $.mobile.loading('hide');
    

    您当前的那些在 jQuery 1.2+ 中已被弃用。

您的最终代码应如下所示:

$.ajax({
    type       : "POST",
    url        : "http://domain/public/login",
    crossDomain: true,
    beforeSend : function() {$.mobile.loading('show')},
    complete   : function() {$.mobile.loading('hide')},
    data       : {username : 'subin', password : 'passwordx'},
    dataType   : 'json',
    success    : function(response) {
        //console.error(JSON.stringify(response));
        alert('Works!');
    },
    error      : function() {
        //console.error("error");
        alert('Now working!');                  
    }
});     

证明它正在工作,只需从磁盘而不是从服务器运行它,因为您将收到 CROSS domain 错误:

<!DOCTYPE html>
<html>
    <head>
        <title>jQM Complex Demo</title>
        <meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>
        <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=no; target-densityDpi=device-dpi"/>
        <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
        <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>          
        <script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>    
        <script>
    $.ajax({
        type       : "POST",
        url        : "http://domain/public/login",
        crossDomain: true,
        beforeSend : function() {$.mobile.loading('show')},
        complete   : function() {$.mobile.loading('hide')},
        data       : {username : 'subin', password : 'passwordx'},
        dataType   : 'json',
        success    : function(response) {
            //console.error(JSON.stringify(response));
            alert('Works!');
        },
        error      : function() {
            //console.error("error");
            alert('Not working!');                  
        }
    });     
        </script>
    </head>
    <body>
        <div data-role="page" id="index">
            <div data-theme="b" data-role="header">
                <h1>Index page</h1>
            </div>

            <div data-role="content">

            </div>
        </div>    
    </body>
</html>   
于 2013-05-20T12:01:31.403 回答
1

你在这里有一个类型:

    date       : {username : 'subin', password : 'passwordx'},
//--^^^^----this should be named data

尝试更改为:

    data       : {username : 'subin', password : 'passwordx'},
于 2013-05-20T11:48:51.307 回答
0

使用数据类型 jsonp

 dataType   : 'jsonp'

启用跨域

于 2015-11-07T20:55:03.940 回答