我在使用 php 创建的 JSON Web 服务时遇到问题。当我包含 echo $_GET['jsoncallback'].'('.json_encode($posts).')'; 除此之外,我在行(某个数字)上收到了一个错误的未识别索引,但它是 echo $_GET['jsoncallback'].'('.json_encode($posts).')'; 出现。
如果我离开那条线,我会得到 JSON,但最终会出现标签无效的错误
我该如何解决这个问题?我的代码如下。
<?php
$link = mysql_connect('localhost','root','') or die('Cannot connect to the DB');
mysql_select_db('music_db',$link) or die('Cannot select the DB');
/* grab the posts from the db */
$query = "SELECT track.track_id, track.track_name, artist.artist_name, genre.genre_name FROM artist INNER JOIN (genre INNER JOIN track ON genre.genre_id = track.genre_id) ON artist.artist_id = track.artist_id";
$result = mysql_query($query,$link) or die('Errant query: '.$query);
/* create one master array of the records */
$posts = array();
if(mysql_num_rows($result)) {
while($post = mysql_fetch_assoc($result)) {
$posts[] = array('post'=>$post);
}
}
/* output in necessary format */
header('Content-type: application/json');
echo json_encode(array('posts'=>$posts));
@mysql_close($link);
?>