使用 KnockoutJS 链接选择列表
我有两个与 KnockoutJS Observable Arrays 相同的选择列表。
我希望能够从一个值中选择一个值,并使其从另一个值中消失,然后如果我更改第一个选项,它会再次出现。
有没有比从数组中推送和拉出记录更简单的方法?
谢谢, 乔什
I have two identical select lists as KnockoutJS Observable Arrays.
I want to be able to select a value from one and for it to disappear from the other and then if i change the first option for it to appear again.
Is there a simpler way than pushing and pulling the records out of the array?
Thanks,
Josh
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为最简单的方法是使用一个 observableArray 和两个计算来绑定选项。然后,您需要将值绑定绑定到两个单独的可观察量。
在这两个计算中,您只需使用 ko.utils.arrayFilter 即可使用另一个的选定值来过滤 observableArray。
这有道理吗?
I think the easiest way would be to have one observableArray and two computed which you use to bind options to. Then you'll need two separate observables that you bind the value bindings to.
In the two computed you simply use
ko.utils.arrayFilter
where you filter the observableArray using the selected value of the other.Does this make sense?