使用 HTMLBars 将多个控制器属性绑定到一个属性

Bind more controller properties to one attribute using HTMLBars

这是正确的还是有其他解决方案?

<input disabled={{model.isnValid}} disabled={{isSaving}}>

我知道我可以创建新的 CP 并依赖于 model.isnValidisSaving,但我想知道是否还有其他解决办法吗

谢谢指教

在这里使用计算的 属性 可能是最好的。另一个可能的解决方案是 ember-truth-helpers,它允许您编写如下代码:

<input disabled={{or model.isInvalid model.isSaving}}>

我经常使用 ember-truth-helpers,但这看起来很奇怪,我不推荐它。