ajax返回json數(shù)據(jù)中包括html標(biāo)簽,使用mustache插入到模塊中,結(jié)果都是html標(biāo)簽直接顯示出來。試過先將html轉(zhuǎn)義,但沒有作用。求解決方法。
1 回答

牛魔王的故事
TA貢獻(xiàn)1830條經(jīng)驗(yàn) 獲得超3個贊
mustache.js does escape all values when using the standard double mustache syntax. Characters which will be escaped: & \ " < >. To disable escaping, simply use triple mustaches like { { {unescaped_variable} } }.
Example: Using { {variable} } inside a template for 5 > 2 will result in 5 > 2, where as the usage of { { {variable} } } will result in 5 > 2.
我覺得你要看下文檔才行。(上面為 https://github.com/janl/mustache.js 中摘抄)
簡單來說 {{{}}} 可以滿足你的要求
添加回答
舉報
0/150
提交
取消