【发布时间】:2012-06-27 01:11:38
【问题描述】:
我有这样的 JSON:
{ "something": "http://something.com" }
和这样的 HTML:
<a href="{{something}}">{{something}}</a>
当我申请 Mustache 时,我得到了
<a href="%7B%7Bsomething%7D%7D">http://something.com</a>
但我想要得到的是
<a href="http://something.com">http://something.com</a>
我已经尝试过{{{ something}}}、{{& something}}、单引号、双引号……我什至阅读了文档。
你能帮帮我吗?
【问题讨论】:
-
这里还需要三个大括号,防止“://”转义
标签: javascript templates mustache