Dust.js - 遍历迭代的匿名数组

时间:2013-10-15 18:21:36

标签: dust.js

我有这种数据结构:

{ 'items' : [
    [ 'apples', "$1.00" , "Delicious" ],
    [ 'oranges', "$2.00" , "Juicy" ],
  ]
}

我正在尝试访问内部项目,但无法弄清楚如何。

我可以通过{。}来解决当前循环的整个数组,但我似乎无法访问其中的项目。 (我可以在胡子中做到这一点)

我期待这样的事情发挥作用......

{#items}
   <b>{.[0]}</b> <em>only {.[1]}!</em>
   <p>{.[2]}</p>
{/items}

1 个答案:

答案 0 :(得分:0)

当我在尘土操场上运行你的例子时:http://linkedin.github.io/dustjs/test/test.html

我得到的输出是:

<b>apples</b> <em>only $1.00!</em><p>Delicious</p><b>oranges</b> <em>only $2.00!</em><p>Juicy</p>

这看起来就像你期待的那样。我相信在您的帖子可能使这项工作完成后,在这方面的修复。抓住最新版本的灰尘。