我正在修改一些淘汰代码,我遇到了这个:
this.edit = ko.observable();
this.selected = ko.observable();
this.clicked = ko.observable();
为同一个 ko.observable 分配多个引用对我来说没有意义。这样做有什么原因吗?
我认为它应该是这样的:
this.genericName = ko.observable();
然后在使用 this.edit、this.selected 或 this.clicked 的任何地方使用 this.genericName。