我想通過JSON API閱讀Tumblr的帖子。使用JavaScript獲取JSON數據(來自Tumblr)
使用他們的API,數據傳回這樣的:
var tumblr_api_read= {
"posts":[
"id":"1234",
"regular-title":"This is the title of the post",
"regular-body":"This is the body of the post"
]
}
我無法回到「常規題」和「常規體」。
我的JS代碼如下所示:
var tumblr= tumblr_api_read['posts'];
for (eachPost in tumblr)
{
var id=posts[eachPost].id; //Works fine
var regularTitle=posts[eachPost].regular-title; //Returns NaN
}
我假設這是因爲帖[eachPost] .regular標題中有破折號,但我無法找到如何使任何文件在這種情況下工作!
謝謝。
'posts'是一個數組;不要使用'for ... in'來遍歷一個數組,使用'for(i = 0; i
Martijn