0

我什至很难让基本的 AJAX 与 PhoneGap Developer 一起工作,我想看看是否有人可以帮助我。

我正在尝试使用 W3Schools 的 AJAX PHP 示例进行测试,因此我可以“建立”我的 PhoneGap/AJAX 能力,为我负责创建的移动应用程序开发用户登录功能。但是,作为一个无论如何都不是程序员的人(而且他们往往会被计算机网络问题所迷惑......甚至不要开始使用代理!),我什至试图让 W3Schools 样本工作感到难过.

该示例可在此处 ( http://www.w3schools.com/ajax/ajax_php.asp ) 找到,如下所示。(对于那些像我一样不具备编程思维并且更擅长视觉思考的人,该示例有一个文本框,如果您在其中键入一个人姓名的第一个字母,它将尝试查找以使用它调用的数据库文件中的这些字母。当用户键入时,它会显示它在文本框下方找到的内容的实时结果。)

HTML/JavaScript/AJAX:

<html>
<head>
<script>
function showHint(str) {
    if (str.length == 0) {
        document.getElementById("txtHint").innerHTML = "";
        return;
    } else {
        var xmlhttp = new XMLHttpRequest();
        xmlhttp.onreadystatechange = function() {
            if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
                document.getElementById("txtHint").innerHTML = xmlhttp.responseText;
            }
        };
        xmlhttp.open("GET", "gethint.php?q=" + str, true);
        xmlhttp.send();
    }
}
</script>
</head>
<body>

 

<p><b>Start typing a name in the input field below:</b></p>
<form>
First name: <input type="text" onkeyup="showHint(this.value)">
</form>
<p>Suggestions: <span id="txtHint"></span></p>
</body>
</html>

PHP:

<?php
// Array with names
$a[] = "Anna";
$a[] = "Brittany";
$a[] = "Cinderella";
$a[] = "Diana";
$a[] = "Eva";
$a[] = "Fiona";
$a[] = "Gunda";
$a[] = "Hege";
$a[] = "Inga";
$a[] = "Johanna";
$a[] = "Kitty";
$a[] = "Linda";
$a[] = "Nina";
$a[] = "Ophelia";
$a[] = "Petunia";
$a[] = "Amanda";
$a[] = "Raquel";
$a[] = "Cindy";
$a[] = "Doris";
$a[] = "Eve";
$a[] = "Evita";
$a[] = "Sunniva";
$a[] = "Tove";
$a[] = "Unni";
$a[] = "Violet";
$a[] = "Liza";
$a[] = "Elizabeth";
$a[] = "Ellen";
$a[] = "Wenche";
$a[] = "Vicky";

// get the q parameter from URL
$q = $_REQUEST["q"];

$hint = "";

// lookup all hints from array if $q is different from ""
if ($q !== "") {
    $q = strtolower($q);
    $len=strlen($q);
    foreach($a as $name) {
        if (stristr($q, substr($name, 0, $len))) {
            if ($hint === "") {
                $hint = $name;
            } else {
                $hint .= ", $name";
            }
         }
    }
}
 
// Output "no suggestion" if no hint was found or output correct values
echo $hint === "" ? "no suggestion" : $hint;
?>

使用 localhost 在我的浏览器中测试 HTML 文件,一切正常。

但是,将上述内容制作成PhoneGap项目并在我的Android手机上进行测试,名称返回功能不起作用。这显然是由于没有执行 AJAX 命令。

有谁知道我该如何解决这个问题?我已经在我的 config.xml 文件中添加了以下内容,并且没有任何改变:

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

提前致谢。

4

1 回答 1

0

因为白名单默认阻止外部调用

添加此插件,如果尚未添加

https://github.com/apache/cordova-plugin-whitelist

并将此元标记添加到您的 html

  <meta http-equiv="Content-Security-Policy" content="default-src *; style-src 'self' 'unsafe-inline'; script-src * 'unsafe-inline' 'unsafe-eval'"/>
于 2016-04-04T18:45:59.240 回答