使用 JavaScript能使本网站更好的工作。
首页
探索
帮助
登录
jan
/
mustache.js
镜像自地址
https://github.com/janl/mustache.js
关注
1
点赞
0
派生
0
代码
工单
0
版本发布
46
百科
动态
浏览代码
Only access properties of objects on Context.lookup
tags/v1.0.0
Chris Buckley
12 年前
父节点
96b04c87bd
当前提交
d9aa703014
共有
4 个文件被更改
,包括
6 次插入
和
1 次删除
分列视图
Diff 选项
显示统计
下载 Patch 文件
下载 Diff 文件
+1
-1
mustache.js
+3
-0
test/_files/bug_length_property.js
+1
-0
test/_files/bug_length_property.mustache
+1
-0
test/_files/bug_length_property.txt
+ 1
- 1
mustache.js
查看文件
@@ -368,7 +368,7 @@
while (value != null && index < names.length)
value = value[names[index++]];
} else {
} else
if (typeof context.view == 'object')
{
value = context.view[name];
}
+ 3
- 0
test/_files/bug_length_property.js
查看文件
@@ -0,0 +1,3 @@
({
length: 'hello'
})
+ 1
- 0
test/_files/bug_length_property.mustache
查看文件
@@ -0,0 +1 @@
{{#length}}The length variable is: {{length}}{{/length}}
+ 1
- 0
test/_files/bug_length_property.txt
查看文件
@@ -0,0 +1 @@
The length variable is: hello
撰写
预览
正在加载...
取消
保存