快速提问。是否可以在条件句中评估除 bool(boolean) 型属性以外的其他内容?

例如,这有效

//elsewhere...  myproperty = true
{{#if myproperty}}...

有其他方法可以完成吗?例如
//elsewhere...  myproperty = 3
{{#if myproperty<4}}...

最佳答案

无法在模板中执行{{#if myproperty<4}}

有关在这种情况下的操作示例,请参见以下问题

How do I make a conditional helper with ember-cli and handlebars 2.0.0?

关于ember.js - Handlebars 条件句-仅 bool 属性?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28351116/

10-10 17:59