我有这样的 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}}
,单引号,双引号......我什至阅读了文档。
你能帮助我吗?