-1

我正在使用 phonegap 制作一个应用程序,它允许使用 .html 表单,但我们需要 .php 格式的文件,因此我们将使用服务器进行 php。
在 phonegap 上制作 index.html 页面后,我没有得到任何将 phonegap 与 php 连接的示例或提示。

<html>
<head>
    <style type="text/css"></style>
    <script type="text/javascript">
    function post(){
                var first = document.getElementById("first").value; 
                var second = document.getElementById("second").value;

                var formdata = new FormData();
                formdata.append("first", first);
                formdata.append("second", second);



    var ajax = new XMLHttpRequest();
    document.getElementById('ans').innerHTML = 'Loading...';
    ajax.addEventListener("load", completeHandlerrrr, false);

    ajax.open("POST", "http://localhost/phonegap/app/post.php");
    ajax.send(formdata);
}
function completeHandlerrrr(event){

var hh= event.target.responseText; 

    document.getElementById('ans').innerHTML = hh; 

}


</script>

</head>
<body>  

 <input type="text" id="first" name="first" />
 <input type="text" id="second" name="second" /> 
 <input type="submit" id="submit" name="submit" onclick="post();"/>
<div id="ans"></div>
</body>
</html>

post.php

<?php
echo $_POST['first'];
echo $_POST['second'];

?>
4

3 回答 3

4

Phonegap 是一个移动应用程序开发框架,它使用 HTML、CSS、JavaScript 和 Cordova 实现原生功能。另一方面,PHP 是一种服务器端脚本语言,需要服务器上的基础设施。您不能直接使用 PHP,但可以通过在 JavaScript 文件中使用 Ajax 调用来使用来自远程服务器的 PHP 页面的结果。

于 2016-03-19T06:55:39.397 回答
1

在 phonegap 中,您可以使用服务器中的 php。

喜欢

ajax.open("POST", "http://192.168.1.1/phonegap/app/post.php"); // or you domain server www.example.com/api/post.php

代替localhost.

你可以在你的服务器 php 文件中使用正常的 msql 连接。

于 2016-03-19T06:56:22.193 回答
0

我认为您确实忘记了较新的浏览器/Cordova 解析器会阻止对其他网站的请求。
我的解决方案是上传包含 AJAX 槽服务器的 JS 文件并使用:
<script src="http://localhost/js/index.js"></script>

于 2016-12-02T09:53:54.070 回答