如何在发布到其他文档之前构建 JSON 数组?

发布于 2024-11-05 16:06:41 字数 484 浏览 0 评论 0 原文

我正在阅读一个使用 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'];
   }

I am reading one document requests processed trough another document using AJAX.

In document processed trough AJAX i want to generate JSON array because its only way i can pass two variables and then spread them like this

$('#country').append($('<option>').text(arr_values[1]).attr('value', arr_values[0])));

now i generating code like this

  $results2 = mysql_query('SELECT full, short FROM `Countries` WHERE '.$cities);
   $json = array();
   while( $result2 = mysql_fetch_array($results2) ) {
        $json[] = $result2['short'].','.$result2['full'];
   }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

安稳善良 2024-11-12 16:06:41

json_encode 手册非常清楚其用法,请检查 http://ar.php.net/manual/en/function.json-encode.php

json_encode将标准 php 数组转换为 JSON。

不管怎样,你的SQL代码不正确。您必须使用 mysql_fetch_arrayresults2 获取值,并且“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.php

json_encode converts standard php arrays to JSON.

Anyway, your SQL code is not correct. You must use mysql_fetch_array for getting the values from results2, and 'short' and 'full' are not in your query.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文