基本上我有一个位于服务器上的php脚本,它生成一个JSON文件,列出了mysql数据库中的位置。使用jQuery Mobile我正在开发一个应用程序来显示这些地方。我的代码适用于Chrome& Safari,但是当我将它移植到Phonegap时它不起作用。我在互联网上搜索但找不到答案:(。
用于生成JSON(json.php)的php文件:
<?php
header('Content-type: application/json');
$server = "localhost";
$username = "xxx";
$password = "xxx";
$database = "xxx";
$con = mysql_connect($server, $username, $password) or die ("Could not connect: " . mysql_error());
mysql_select_db($database, $con);
$sql = "SELECT * FROM places ORDER BY name ASC";
$result = mysql_query($sql) or die ("Query error: " . mysql_error());
$records = array();
while($row = mysql_fetch_assoc($result)) {
$records[] = $row;
}
mysql_close($con);
echo $_GET['jsoncallback'] . '(' . json_encode($records) . ');';
?>
我的Javascript文件位于我的应用程序中(加载JSON并显示它):
$('#places').bind('pageinit', function(event) {
getPlaces();
});
function getPlaces() {
var output = $('#placeList');
$.ajax({
url: 'http://www.mysite.com/json.php',
dataType: 'jsonp',
jsonp: 'jsoncallback',
timeout: 5000,
success: function(data, status){
$.each(data, function(i,item){
var place = '<li><a href="">'+item.name+'<span class="ui-li-count">'
+ item.checkins+'</span></a></li>';
output.append(place);
});
$('#placeList').listview('refresh');
},
error: function(){
output.text('There was an error loading the data.');
}
});
}
HTML看起来像这样:
<div data-role="content">
<h3>Places</h3>
<ul data-role="listview" id="placeList" data-inset="true">
</ul>
</div><!-- /content -->
此代码适用于Chrome&amp; Safari,但是当使用Phonegap在xCode模拟器中运行时,它不会加载JSON。
非常感谢任何帮助:)
答案 0 :(得分:0)
这可能与白名单有关,Apple对任何类型的无法控制的数据(如iframe或feed)都不相信。所以他们拒绝所有外部联系。
查看项目根文件夹(xcode)中的phonegap.plist,并将您的网站网址添加到数组'ExternalHosts'。这可能会在之后正常工作。