Insert html in a handlebar template without escaping

后端 未结 3 1408
醉酒成梦
醉酒成梦 2020-11-28 04:23

Is there a way to insert a string with html tags into a handlebars template without getting the tags escaped in the outcoming string?

template.js:

&         


        
3条回答
  •  臣服心动
    2020-11-28 05:14

    According to Handlebars documentation, http://handlebarsjs.com/expressions.html

    Quote from documentation,

    If you don't want Handlebars to escape a value, use the "triple-stash", {{{

    Pass the raw HTML to Handlebars template and get the raw HTML output by using triple brackets.

    {{{foo}}}
    

提交回复
热议问题