作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 ViewModel 和一个可观察的属性,在单击编辑链接后该属性将具有一个复杂的对象。这是管理一组组的基本示例。用户可以单击“编辑”链接,我想在 SelectedGroup 属性中捕获该组。
但我不确定我应该如何初始化 SelectedGroup 并使该对象中的每个人都成为可观察的。
function ManageGroupsViewModel() {
var self = this;
self.Groups = ko.observableArray();
self.IsLoading = ko.observable(false);
self.SelectedGroup = ko.observable();
}
最佳答案
通常您会以 SelectedGroup
为 null
开始:
self.SelectedGroup = ko.observable(null);
...然后当您准备好编辑一个组时,只需将它设置为一个新实例;如果该实例需要可观察的属性,您可以像创建 ManageGroupsViewModel
一样创建它们:
function GroupVM() {
this.name = ko.observable("");
this.members = ko.observableArray();
}
和
// Start editing a group
yourGroupsViewModel.SelectedGroup(new GroupVM());
This other answer我有一个相当详尽的例子。
关于javascript - Knockout JS - 如何将复杂对象初始化为可观察对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37791208/
我是一名优秀的程序员,十分优秀!