即使我用谷歌搜索,我似乎无法做到这一点。
我有一个mysql表,我需要将一列中的值返回到我的jquery脚本,如下所示:
array = 123, 556, 553, 542, 4322...
我要么是这样的:
array = "123""556""553""542""4322"...
或者像这样
[{"FB_ID":"123"}, {...
我如何用php或jquery实现这个目标?
继承了我当前的代码,结果看起来像是最后一个代码。
$connection = mysql_connect("$host", "$username", "$password") or die(mysql_error());
$sql = "SELECT FB_ID FROM `database`.`players` WHERE recieved = '1'";
$result =mysql_query($sql);
$rows = array();
while($r = mysql_fetch_assoc($result)) {
$rows[] = $r;
}
echo json_encode($rows);
答案 0 :(得分:1)
如果你想这样:
[123, 556, 553, 542, 43222, ...]
这样做:
$rows = array();
while($r = mysql_fetch_assoc($result)) {
$rows[] = $r['FB_ID'];
}
答案 1 :(得分:1)
需要指定一个键来获取它的值。
while($r = mysql_fetch_assoc($result)) {
$rows[] = $r['FB_ID'];
}
答案 2 :(得分:0)
尝试转换为int:
$rows[]=(int)$r['FB_ID'];
答案 3 :(得分:0)
在你的php页面
header("Content-type: application/json");
$arr = array(123, 556, 553, 542, 4322);
echo json_encode($arr);
在jquery中
$.ajax({
url:'yoururl',
type:'post',
dataType:'json',
success:function(result){
var response = JSON.stringify(result);
res = JSON.parse(response);
console.log(res);
}
});