1

这里是淘汰赛新手。我试过使用 ko.utils.arrayFilter 但我使用它时它似乎没有更新。我正在使用与 arrayForEach 相同的方法,所以我不确定这里有什么问题。使用 arrayFilter 时如何获取要更新的列表?

JS:

function entry(name, category) {
    this.name = ko.observable(name);
    this.category = ko.observable(category);
}

function entriesModel() {
    this.entries = ko.observableArray([]);
    this.filter = function () {
        ko.utils.arrayFilter(this.entries(), function (item) {
            return item.category == 'SciFi';
        });
    };
    this.sort = function () {
        this.entries.sort(function (a, b) {
            return a.category < b.category ? -1 : 1;
        });
    };
}

$(document).ready(function () {
    $.getJSON("entries.php", function (data) {
        entries(data);
    });
    ko.applyBindings(entriesModel());
});

HTML:

<ul data-bind="foreach: entries">
<li>
    <p data-bind="text: name"></p>

    <p data-bind="text: category"></p>
</li>

<button data-bind="click: filter">Filter</button>
<button data-bind="click: sort">Sort</button>

JSON:

[{"id":"1","name":"Iron Man","category":"SciFi"},{"id":"2","name":"Terminator","category":"SciFi"},{"id":"3","name":"The Pianist","category":"Drama"},{"id":"4","name":"The Hangover","category":"Comedy"}]
4

3 回答 3

0
data-bind="value: currentFilter, valueUpdate: 'afterkeydown'"

将解决您的问题

于 2013-11-25T13:06:33.507 回答
0

ko.utils.arrayFilter不会对数组进行适当的过滤。它返回一个包含过滤项的新数组,并保持原始数组不变。

如何使用的一个例子在ko.utils.arrayFilter这里:http ://www.knockmeout.net/2011/04/utility-functions-in-knockoutjs.html

于 2013-09-15T06:20:33.407 回答
0

不确定这是否正是您想要的,但您的过滤器函数不会执行就地过滤器,因此您需要使用新的过滤数组重新分配 observableArray。如

this.filter = function () {
    this.entries(ko.utils.arrayFilter(this.entries(), function (item) {
        return item.category == 'SciFi';
    }));
};

见这里:http: //jsfiddle.net/aKfUc/1/

如果您不想永久更改数组,您可能需要使用 ko.computed observable:

http://knockoutjs.com/documentation/computedObservables.html

于 2013-09-15T06:20:41.720 回答