gpt4 book ai didi

jquery - 如何解析 Controller 中的 json 值以在 jquery/ajax 中查看

转载 作者:行者123 更新时间:2023-12-01 07:59:11 25 4
gpt4 key购买 nike

我正在使用 CodeIgniter,因为我需要解析来自 Controller 的 json 字符串

这是我的代码:

   public function autosuggest_country(){
$query = $this->db->query("SELECT country, count(country) as `Total` FROM list GROUP BY country");

//echo"<pre>"; print_r($query->result());
echo json_encode($query->result()); }

并获取输出

[{"country":"Colombia","Total":"1"},{"country":"Estonia","Total":"1"},{"country":"India","Total":"13"},{"country":"Mexico","Total":"1"},{"country":"USA","Total":"1"}]

我不知道如何将这个 json 类型输出解析为 $.getJSON() 数据参数?

提前致谢

最佳答案

请仔细阅读 jQuery api 页面中的 getJSON() 方法。

所有内容都描述了如何根据您的要求处理 json 数据..

getJSON() 是 Ajax Function 的简写,相当于

$.ajax({
dataType: "json",
url: url,
data: data,
success: success
});

这样您就可以轻松访问以下网址中描述的 json 数据..

http://api.jquery.com/jquery.getjson/

关于jquery - 如何解析 Controller 中的 json 值以在 jquery/ajax 中查看,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21231412/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com