使用KnockoutJS从外部observableArray中删除项目。
我的应用程序中有两个observableArray
。一个用于购买可用产品,另一个用于我在摘要中添加的产品,点击add button
。
直到这里,一切正常。但现在我需要从摘要中删除项目并更改按钮状态/样式 - 我不知道如何访问外部observableArray
来执行此操作。
要了解我的问题,请查看this jsFiddle或查看下一主题中的标记。
如您所见,当我点击add button
时,产品会转到摘要。当我点击删除 - 无论该按钮来自摘要还是产品 - 我想更改按钮状态并从摘要中删除该项目。从技术上讲,我想使用items' observableArray
从products' observableArray
删除该项目。
HTML:
<ul class="summary">
<!-- ko foreach: Summary.items -->
<p data-bind="text: name"></p>
<button class="btn btn-danger btn-mini remove-item">
<i class="icon-remove">×</i>
</button>
<!-- /ko -->
</ul>
<h1>What would you to buy?</h1>
<ul class="products">
<!-- ko foreach: Product.products -->
<li>
<h3 data-bind="text: name"></h3>
<p data-bind="text: desc"></p>
<!-- ko if:isAdded -->
<button data-bind="if: isAdded" class="btn btn-small btn-success action remove">
<i data-bind="click: $root.Summary.remove" class="icon-ok">Remove</i>
</button>
<!-- /ko -->
<!-- ko ifnot:isAdded -->
<form data-bind="submit: function() { $root.Summary.add($data); }">
<button data-bind="ifnot: isAdded" class="btn btn-small action add">
<i class="icon-plus">Add</i>
</button>
</form>
<!-- /ko -->
</li>
<!-- /ko -->
</ul>
JavaScript的:
function Product(id, name, desc) {
var self = this;
self.id = ko.observable(id);
self.name = ko.observable(name);
self.desc = ko.observable(desc);
self.isAdded = ko.observable(false);
}
function Item(id, name) {
var self = this;
self.id = ko.observable(id);
self.name = ko.observable(name);
}
function SummaryViewModel() {
var self = this;
self.items = ko.observableArray([]);
self.add = function (item) {
self.items.push(new Item(item.id(), item.name()));
console.log(item);
item.isAdded(true);
};
self.remove = function (item) {
item.isAdded(false);
};
};
function ProductViewModel(products) {
var self = this;
self.products = ko.observableArray(products);
};
var products = [
new Product(1, "GTA V", "by Rockstar"),
new Product(2, "Watch_Dogs", "by Ubisoft")
];
ViewModel = {
Summary: new SummaryViewModel(),
Product: new ProductViewModel(products)
}
ko.applyBindings(ViewModel);
答案 0 :(得分:10)
你可以search for it。
您可以在购物车中查询具有相同ID的商品,然后将其删除
self.remove = function (item) {
var inItems = self.items().filter(function(elem){
return elem.id() === item.id(); // find the item with the same id
})[0];
self.items.remove(inItems);
item.isAdded(false);
};
除非你有数十万件物品,否则应该足够快。请记住使用items.remove()
,以便更新observableArray
:)
答案 1 :(得分:1)
一旦您将产品声明为observableArray,您就应该能够在其上调用remove(根据this)。假设您有一个对要删除的对象的引用。