使用 javascript 解析 json 响应

发布于 2024-11-01 07:25:36 字数 237 浏览 3 评论 0原文

例如 json 响应是这样的:

{testing:[
    {"title":"Hello","text":"Hello Test!"},
    {"title":"World","text":"World Test!"}
]}

如何使用 jQuery getJSON 和 jQuery.each 函数解析此 json 数据以在单独的 div 标签中打印此 data

for example json response is like this:

{testing:[
    {"title":"Hello","text":"Hello Test!"},
    {"title":"World","text":"World Test!"}
]}

how can I parse this json data using jQuery getJSON and jQuery.each function to print this data in separate div tags?

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

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

发布评论

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

评论(2

往事风中埋 2024-11-08 07:25:37

$.getJson();期望数据格式正确,所以如果你使用 php,你需要使用 json_encode($array)

,你应该没问题,你不需要解析任何东西。

$.getJson(); expects data to be properly formatted, so if u are using php u need to use json_encode($array)

and you should be fine, you don't need to parse anything.

永言不败 2024-11-08 07:25:37

我认为这可能有效。它会调用服务器获取 json,然后循环测试数组并显示内容。

var data = {id: userId}; //Use null if your server needs no info
jQuery.getJSON( "/mylink/getjson", data, function(json){
    if(typeof(json.testing) != "undefined"){
        $(json.testing).each(function(){
            document.write(this.title);
            document.write(this.text);
        });
    }
})

I think this might work. It makes a call to the server for your json then loops through the testing array and displays the contents.

var data = {id: userId}; //Use null if your server needs no info
jQuery.getJSON( "/mylink/getjson", data, function(json){
    if(typeof(json.testing) != "undefined"){
        $(json.testing).each(function(){
            document.write(this.title);
            document.write(this.text);
        });
    }
})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文