我有JSON是这样的:胡须里面的HREF
{ "something": "http://something.com" }
和HTML这样的:
<a href="{{something}}">{{something}}</a>
当我申请胡子,我得到
<a href="%7B%7Bsomething%7D%7D">http://something.com</a>
但我是什么试图得到是
<a href="http://something.com">http://something.com</a>
我已经试过{{{ something}}}
,{{& something}}
,单引号,双引号......我甚至读过文档。
你能帮我吗?
为了防止“://” – Evgeny