目前实现的功能是 单条记录 监听没有问题 如下:
js :
// 商品
var CartLine = function(){
var self = this;
// 名称
self.name = ko.observable("商品1");
// 价格
self.price = ko.observable(15);
// 数量
self.quantity = ko.observable(1);
// 小计
self.subtotal = ko.computed(function() {
return self.price() * self.quantity();
});
// 添加数量
self.addQuantity = function(){
var count = this.quantity();
this.quantity(count +1);
}
// 减少数量
self.minusQuantity = function(){
var count = this.quantity();
this.quantity(count-1);
}
};
// 购物车
var Cart = function() {
var self = this;
self.lines = ko.observableArray([new CartLine()]);
// 总价
self.grandTotal = ko.computed(function() {
var total = 0;
$.each(self.lines(), function() { total += this.subtotal() })
return total;
});
// 移除
self.removeLine = function(line) {
self.lines.remove(line);
};
};
ko.applyBindings(new Cart());
如果多条记录改怎么写? 比如数据如下:
// 数据
var data = {
products: [
{ name: '产品1', price: 10},
{ name: '产品2', price: 20},
{ name: '产品3', price: 30}
]
}
该怎么同时监听呢??菜鸟 见谅!!!
用这个ko.observableArray(),应该就可以了吧