gpt4 book ai didi

php - 使用 Codeigniter 循环遍历此 json 对象 (jquery)

转载 作者:行者123 更新时间:2023-12-02 19:16:22 25 4
gpt4 key购买 nike

我创建了一个 Controller 和 View ,如下 - 我正在尝试循环遍历 JSON 对象 - 有人可以帮忙吗?

任何人都可以演示如何在 View 中循环 json 对象吗?

//Controller PHP function:
public function ajax_get_all()
{
$stockists = $this->stockists_model->get_all();
header('Content-type: application/json');
echo json_encode($stockists);
}

//HTML View

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js" type="text/javascript"></script>

<script type="text/javascript">
$(function() {
// Stuff to do as soon as the DOM is ready;
$.getJSON("/stockists/ajax_get_all", function(data) {
var obj = jQuery.parseJSON(data);
//console.log(obj);
});
});

最佳答案

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js" type="text/javascript"></script>

<script type="text/javascript">
$(function() {
// Stuff to do as soon as the DOM is ready;
$.getJSON("/stockists/ajax_get_all", function(data) {
$.each(data, function(key,value){
console.log(key);
console.log(value);
});
//var obj = jQuery.parseJSON(data);
//console.log(obj);
});
});

关于php - 使用 Codeigniter 循环遍历此 json 对象 (jquery),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13085273/

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