使用 javascript 解析 json 响应
例如 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
$.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.
我认为这可能有效。它会调用服务器获取 json,然后循环测试数组并显示内容。
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.