我目前正在使用Phonegap和xcode来制作iPhone应用程序。
我只是尝试一个简单的Json调用来从数据库(php)获取查询,并且它返回Null。
我已将.plist文件中的域列入白名单,用于phonegap。这是代码:
$.getJSON('"http://slc0013.pickaweb.co.uk/~bengeor1/fixtures.php",', function(data) {
alert(data); //uncomment this for debug
//alert (data.item1+" "+data.item2+" "+data.item3); //further debug
$('#resultLog').html("<p>item1="+data.id+" item2="+data.home_team+" item3="+data.away_team+"</p>");
});
PHP代码:
<?php
header("Access-Control-Allow-Origin: *");
ini_set('display_errors',1);
error_reporting(E_ALL);
// Set your return content type
header('Cache-Control: no-cache, must-revalidate');
header('Content-type: application/json');
$db = "localhost";
$db_name = "xxx";
$db_user = "xxx";
$db_pwd = "xxxx";
$con = mysql_connect($db, $db_user, $db_pwd);
if (!$con) {
$status = 11; //database error
}
$db_selected = mysql_select_db($db_name, $con);
if (!$db_selected) {
}
$query = "SELECT * FROM Fixtures";
$result = mysql_query($query);
mysql_close();
$num = mysql_numrows($result);
$rows = array();
while($r = mysql_fetch_assoc($result)) {
$rows[] = $r;
}
echo json_encode($rows)
?>
如果你只运行php文件,它会显示正确的结果。
非常感谢您的帮助。
感谢。
答案 0 :(得分:1)
尝试替换第一行:
$.getJSON('"http://slc0013.pickaweb.co.uk/~bengeor1/fixtures.php",', function(data) {
到此:
$.getJSON("http://slc0013.pickaweb.co.uk/~bengeor1/fixtures.php", function(data) {
答案 1 :(得分:0)
您认为自己遇到问题'"http://slc0013.pickaweb.co.uk/~bengeor1/fixtures.php",'
应该是"http://slc0013.pickaweb.co.uk/~bengeor1/fixtures.php"
我猜