我有一系列书签:
> db.Bookmarks.find()
{ "Name" : "Lenta.ru", "Timestamp" : 1381233418275, "URL" : "http://lenta.ru", "_id" : "zS2ccZXkGLENzN2Bx", "tags" : [ "asdx" ] }
{ "Name" : "Another", "Timestamp" : 1381234763188, "URL" : "http://ya.ru", "_id" : "qAB46c38hEFSw3NTE", "tags" : [ "one", "two" ] }
字段“标签”具有数组类型。
我有一个 HTML 模板来遍历书签:
<template name="bookmarks">
{{#each bookmarks}}
<a href="{{URL}}" class="bookmark_url">{{Name}}</a>
<div> {{tags}} </div>
{{/each}}
</template>
我想将每个标签显示到一个单独的“div”中。像这样的东西:
<template name="bookmarks">
{{#each bookmarks}}
<a href="{{URL}}" class="bookmark_url">{{Name}}</a>
{{#each tags}}
<div> {{current_tag}} </div>
{{/each}}
{{/each}}
</template>
我该怎么做 ?
谢谢。