How to implement not with if statement in Ember Handlebars?

后端 未结 6 1688
故里飘歌
故里飘歌 2021-01-30 04:34

I have a statement like this:

{{#if IsValid}}

I want to know how I can use a negative if statement that would look like that:

6条回答
  •  爱一瞬间的悲伤
    2021-01-30 05:26

    {{#if items.length}}
        //Render
    {{/if}}
    

    Here items.length .. if it returns some value except null, then only it will enters into the if loop.

    NOTE : You can check Boolean values also. In If block

    {{#if booleanFloag}}
    

提交回复
热议问题