How to implement not with if statement in Ember Handlebars?

后端 未结 6 1686
故里飘歌
故里飘歌 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:24

    Simple answers for simple questions:

    {{#unless isValid}}
    {{/unless}}
    

    Also keep in mind that you can insert an {{else}} in between an {{#if}} or {{#unless}} and the closing tag.

提交回复
热议问题