我知道我在这里遗漏了一些非常简单的东西,但我已经搜索了一段时间,但没有找到任何解决方案。
我有一些看起来像这样的 json 数据
post[{
//various post data
categories": {
"Rants": {
"name": "Rants",
"slug": "rants",
"description": "",
"post_count": 9
}]
我正在尝试使用each()
循环返回类别 slug
$.each(response.posts[0].categories, function (index) {
alert(response.posts[0].categories.index.slug);
});
它在我调用时有效,alert(response.posts[0].categories.rants.slug);
但在我尝试使用索引作为键时无效。
有任何想法吗?