在 JSONP 调用后,我返回:
[
{
"text": "yo whats up?",
"id": 1
},
{
"text": "hey man!",
"id": 2
},
{
"text": "dude.",
"id": 3
}
]
下面是实际的 API 调用:
http ://api.twitter.com/1/statuses/user_timeline/codinghorror.json
使用 Dust.js 我会做类似的事情:
<ul>
{#myPosts}
<li>{text}, {id}{~n}</li>
{:else}
<p>Humm...</p>
{/myPosts}
</ul>
但是响应中没有关键的“myPosts”。那就是问题所在。检查 API 调用,看看 JSON 是如何返回的,也许我解释错了。
我将在 Dust.js 中使用什么语法来遍历该数组中的每个对象?