如何在发布到其他文档之前构建 JSON 数组?
我正在阅读一个使用 AJAX 通过另一文档处理的文档请求。
在通过 AJAX 处理的文档中,我想生成 JSON 数组,因为这是我可以传递两个变量然后像这样传播它们的唯一方法
$('#country').append($('<option>').text(arr_values[1]).attr('value', arr_values[0])));
,现在我生成这样的代码
$results2 = mysql_query('SELECT full, short FROM `Countries` WHERE '.$cities);
$json = array();
while( $result2 = mysql_fetch_array($results2) ) {
$json[] = $result2['short'].','.$result2['full'];
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
json_encode
手册非常清楚其用法,请检查 http://ar.php.net/manual/en/function.json-encode.phpjson_encode
将标准 php 数组转换为 JSON。不管怎样,你的SQL代码不正确。您必须使用
mysql_fetch_array
从results2
获取值,并且“short”和“full”不在您的查询中。json_encode
manual is pretty clear about its usage, check 'Example #2 A json_encode() example showing all the options in action' in http://ar.php.net/manual/en/function.json-encode.phpjson_encode
converts standard php arrays to JSON.Anyway, your SQL code is not correct. You must use
mysql_fetch_array
for getting the values fromresults2
, and 'short' and 'full' are not in your query.