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.
是否可以自定义 ko.mapping.toJS 的输出 Javascript?
IE-
只返回 observableArray 的一些 observable / 一些属性?
您在问是否可以自定义调用 .toJS 输出的 JS?
没有任何内置功能,但您当然可以自己修改输出的 JS 对象:
var myViewModel = ...; var jsViewModel = ko.mapping.toJS(myViewModel); // Customize the result jsViewModel.Foo = "bar";