javascript – ember if或statement

前端之家收集整理的这篇文章主要介绍了javascript – ember if或statement前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在ember中使用条件时,是否可以使用OR?
{{#if foo OR bar}}

要么

{{#if foo || bar}}

docs中似乎没有任何东西.

解决方法

您应该将逻辑移动到控制器
App.SomeController = Em.Controller.extend({
  foo: true,bar: false,fooOrBar: Em.computed.or('foo','bar')
});

将模板逻辑保持在最低限度

{{#if fooOrBar}}
原文链接:https://www.f2er.com/js/159054.html

猜你在找的JavaScript相关文章