11

大家好,提前谢谢。我正在使用 Phonegap 2.1.0。在白名单中,一切都被接受..

**<access uri="*" subdomains="true" />
<access origin=".*" subdomains="true"/>**

我正在使用这个函数从我的大学网络服务器调用一个远程 php 文件:

var postData = $(this).serialize();             
                $.ajax({
                    type: 'POST',
                    url: 'http://--/smartphone/login.php',
                    dataType : 'json',
                    data: postData,         
                    success: function(data){
                        alert("good");
                    },
                    error: function(){
                        alert('problem!');
                    }
                });

php 文件只是出于调试原因,如下所示:

    <?php
header('Content-Type: application/json');
$sample = array(
    'name'=>'My Name',
    'email'=>'my_email@example.com'
);
echo json_encode($sample);
?>

但是ajax请求没有发生..在eclipse中我点击提交时不断收到这个错误:

JSCallback Error: Request failed with status 0 at file:///android_asset/www/js/cordova-2.1.0.js:3743

更重要的是,我忘了补充,我可以将 url 作为来自模拟器的链接打开。它工作正常。

* html代码: *

<!DOCTYPE html>
 <html lang="en">
 <head>
   <meta charset="utf-8">
   <link rel="stylesheet" type="text/css" href="css/index.css" />
   <script type="text/javascript" charset="utf-8" src="js/cordova-2.1.0.js"></script>
   <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
   <script type="text/javascript" src="js/index.js"></script>
   <title>Smart Greenhouse</title>
 </head>
 <body>
  <div id="container">
      <img src="css/images/smart_green_house.png" class="logo" alt="l1ogo" />
      <form id="login_form" class="first_display" >
          <label class="title"> E-mail:</label>
          <input id="1" type="email" class="input" size="45" name="email" />
          <label class="title"> password:</label>
          <input id="2" type="password" class="input" size="45" name="password" />
          <input id="3" class="submit_type" type="submit" value="login" />
      </form>
  </div>
 </body>
 </html>

我已经搜索了我认为几乎整个网络......2天搜索......一切都已经过测试......非常感谢......

4

3 回答 3

3

第 1 步:您需要在 php 文件中包含两个标头

header('Content-Type: application/json');
header("Access-Control-Allow-Origin: *");

第 2 步:并在您的索引页面中包含 cdn jquery 库。

第 3 步:使用脚本成功发布表单

<script type="text/javascript">
    $(document).ready(function() {
        $('form').submit(function(e) {
            var postData = $(this).serialize();
            $.ajax({
                type : 'POST',
                url : 'http://www.yoururl/test.php',
                dataType : 'json',
                data : postData,
                success : function(data) {
                    alert(data);
                },
                error : function() {
                    alert('error!');
                }
            });

            return false;
        });
    });
</script>

我已经在 phonegap 中对其进行了测试,并且工作正常。

于 2013-03-22T20:51:38.923 回答
3

最后,经过 4-5 天的搜索..对我来说有些东西..我只是return false在 ajax 回调之后添加。我将代码更改如下:

$('form').submit(function(e){       
    if (password_ok==1 && email_ok==1)
            {
                var postData = $(this).serialize();
                $.ajax({
                    type: 'POST',
                    url: 'http://mysite.xx.x/smartphone/login.php',
                    dataType : 'json',
                    data: postData,         
                    success: function(data){
                        alert(data);
                    },
                    error: function(){
                        alert('error!');
                    }
                });
            }
        else
            {
            e.preventDefault();
            if (email_ok==2)
                {
                $("#1").css("border-color","red");
                $("#1").css("background-color","#FFD8CE");
                }
            if (password_ok==2)
                {
                $("#2").css("border-color","red");
                $("#2").css("background-color","#FFD8CE");
                }
            }
    return false;       
    });

现在唯一的问题是成功时它不会重置页面..而是一次一步...

于 2012-11-10T10:01:36.390 回答
2

我认为原因是由“表单提交”引起的。你把你的ajax代码放在哪里了?在 index.js 中?

您得到的异常意味着“0 == 页面正在卸载”。

在您的情况下,我猜您将 ajax 代码放在 index.js 中,它与表单位于同一页面中。当您提交表单时,浏览器开始卸载当前页面并加载包含表单提交结果的页面。因此,您的 ajax 代码会出现“页面正在卸载”异常。

尽量不要使用表单提交。

于 2012-11-09T03:42:19.833 回答