How to implement not with if statement in Ember Handlebars?

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

    Below Statements Will help full if you want to use if and else :

    {{#if author}}
        

    {{firstName}} {{lastName}}

    {{else}}

    Unknown Author

    {{/if}}

    NOTE : Dont close the if Block until logic finished ...

提交回复
热议问题