Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想做一些基本的事情,比如:
data-bind="visible: x || y"
显示 x 或 y 是否设置为 true
到目前为止,我尝试过的一切都失败了。
如果x和y是可观察的属性,那么您需要将它们称为方法:
x
y
data-bind="visible: x() || y()"
在这样的公式中使用 observables 时,您需要将它们称为函数。