我想使用Knockout.js为我的REST服务构建一个客户端。 我有很多Repositorys我想通过不同的网址访问 - 所以我想出了使用Revealing-Prototype-Pattern的解决方案。 我的问题:我无法了解如何使用我从服务中收到的“数据”映射ItemsProperty。
var Repository = function (url) {
this.Url = url;
this.Items = ko.observableArray([]);
this.PendingItems = ko.observableArray([]);
};
Repository.prototype = function () {
var
getAllItems = function () {
var self = this;
$.getJSON(self.Url, function (data) {
// data=[{"Id":1,"Name":"Thomas","LastName":"Deutsch"},{"Id":2,"Name":"Julia","LastName":"Baumeistör"}]
ko.mapping.fromJS(data, self.Items);
});
},
...
// i call it like this:
customerRepository = new Repository('http://localhost:9200/Customer');
customerRepository.getAllItems();
我认为问题在于: ko.mapping.fromJS(data,self.Items); 但我无法找到正确的方法。
问题:我做错了什么?我找到了一个例子 - 他们也在做同样的事情:http://jsfiddle.net/jearles/CGh9b/
答案 0 :(得分:30)
我相信fromJS的两个参数版本仅用于先前映射的对象,即它们具有隐式空映射选项对象。由于您的映射是第一次运行,因此需要提供这样的空选项对象。
ko.mapping.fromJS(data, {}, self.Items);
http://jsfiddle.net/madcapnmckay/j7Qxh/1/
希望这有帮助。