This website works better with JavaScript.
首頁
探索
說明
登入
jan
/
mustache.js
镜像来自
https://github.com/janl/mustache.js
關註
1
收藏
0
複製
0
程式碼
問題管理
0
版本發佈
46
Wiki
Activity
瀏覽代碼
Add spec for nested iteration (issue
#79
)
tags/0.5.1
Michael Jackson
14 年之前
父節點
d5049a5552
當前提交
905ccbbac8
共有
3 個文件被更改
,包括
10 次插入
和
0 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+8
-0
spec/_files/nested_iterating.js
+1
-0
spec/_files/nested_iterating.mustache
+1
-0
spec/_files/nested_iterating.txt
+ 8
- 0
spec/_files/nested_iterating.js
查看文件
@@ -0,0 +1,8 @@
var nested_iterating = {
inner: [{
foo: 'foo',
inner: [{
bar: 'bar'
}]
}]
};
+ 1
- 0
spec/_files/nested_iterating.mustache
查看文件
@@ -0,0 +1 @@
{{#inner}}{{foo}}{{#inner}}{{bar}}{{/inner}}{{/inner}}
+ 1
- 0
spec/_files/nested_iterating.txt
查看文件
@@ -0,0 +1 @@
foobar
Write
Preview
Loading…
取消
儲存