我想从我的Phonegap Build App中获取数据,并使用服务器端脚本添加到MySQl数据库。我在Phonegap 2.7上完成了100%的工作,但现在他们已经升级了Phonegap 3.0.0,它甚至无法访问服务器上的.php脚本。
我的AJAX代码:
<script>
$.ajax({
type: "POST",
cache: false,
url: "http://domain.com/myfile.php",
data: {"Lon": PGLon , "Lat": PGLat , "Altitude": Altit , "Accuracy": Accur , "AltitudeAcc": AltitudeA , "Heading": Headi , "UUID": PGUUID , "Name": PGNAME , "Speed": Speed , "Timee": Timee , "App": PGUUID} ,
dataType: "text",
success: function(data) {
$('#thediv').text("Update Done");},
error: function(e){ <br>
console.log(JSON.stringify(e));
}
</script>
我可以将来自其他服务器的数据提交到此脚本myfile.php
,但现在无法从我的应用程序中提取。我在服务器上的脚本上设置了日志,以监视与服务器的连接,但是看不到应用程序中的任何内容。
我还在res/xml/config.xml
。