我在通过 AJAX 显示 JSON 时遇到问题。
提要未显示 - 浏览器说
未捕获的类型错误:无法读取未定义的属性“标题”
我想我在这些方面有问题:
$.each(data, function(i, item) {
var news = '<h1>' + item.posts.title + '</h1>'
+ '<p>' + item.posts.content + '</p>'
+ '<p>' + item.posts.custom_fields.ecpt_chill + '</p>';