Show property which includes html tags

后端 未结 3 1305
隐瞒了意图╮
隐瞒了意图╮ 2020-12-29 18:43

I\'ve an ember property which includes html tags (
, ,

, , and similar stuf

相关标签:
3条回答
  • 2020-12-29 19:01

    From http://handlebarsjs.com/

    Handlebars HTML-escapes values returned by a {{expression}}.
    If you don't want Handlebars to escape a value, use the "triple-stash".

    {{{expression}}}

    0 讨论(0)
  • 2020-12-29 19:03

    Ember 2.x, using JavaScript

    To make a string unescaped and output using Ember templates you can use htmlSafe helper.

    Ember.String.htmlSafe('<div>someString</div>')
    

    The returned string will not be HTML escaped by Handlebars template engine.

    http://emberjs.com/api/classes/Ember.String.html#method_htmlSafe

    Use Handlebars Only

    Alternatively, you can pass the raw HTML to Handlebars template and get the raw HTML output by using triple brackets

    Inside Handlebars Template

    <div>{{{raw_html_content}}}</div>
    
    0 讨论(0)
  • 2020-12-29 19:23

    Within Ember.js you can do this via the htmlSafe method, which is added to the String prototype, see http://jsfiddle.net/pangratz666/jNAQ6/:

    Handlebars:

    <script type="text/x-handlebars" >
        {{App.html}} - {{App.unescaped}}
    </script>​
    

    JavaScript:

    App = Ember.Application.create({
        html: '<b>bold text</b>',
        unescaped: function(){
            return this.get('html').htmlSafe();
        }.property('html')
    });​
    
    0 讨论(0)
提交回复
热议问题