self.save = function() {
var dataToSave = $.map(self.lines(), function(line) {
return line.product() ? {
productName: line.product().name,
quantity: line.quantity(),
price: line.product().price
} : undefined
});
alert("Could now send this to server: " + JSON.stringify(dataToSave));
};
};
这是您可以在 knockout.js 官方站点中找到的示例,我需要一个类似的配置作为备用。我必须确保从数据库中读取数据,我该怎么做?