1

编辑:为函数 populateDropdown 和函数 isSystemCorrect 添加了代码(见底部)

编辑 2 我已经把它缩小了一点,问题似乎出现在计算的 observable 中的 arrayFilter 函数中。无论我尝试什么,这都会返回一个空数组。我在过滤之前检查了 self.testsuites() 看起来没问题,但过滤仍然失败。

我的计算出的可观察的、已过滤的测试套件有问题。

从屏幕转储中可以看出,testsuites observable 已正确填充,但计算出的 observable 仍然为空。我还尝试从下拉菜单中选择“付款”以外的其他选项,以查看这是否会触发可观察对象,但没有。

我认为每次更改 self.testsuites() 或 self.dropdownSelected() 时都会更新计算出的 observable,但似乎都不会触发它们。

我在这里做错了什么?

我只是想让计算的可观察过滤器在选择的下拉选项之后成为测试套件,每次它们中的任何一个发生变化。

来自控制台的屏幕转储

function ViewModel() {
    var self = this;

    // The item currently selected from a dropdown menu
    self.dropdownSelected = ko.observable("Payment");

    // This will contain all testsuites from all dropdown options
    self.testsuites = ko.mapping.fromJS('');

    // This will contain only testsuites from the chosen dropdown option
    self.filteredTestsuites = ko.computed(function () {
        return ko.utils.arrayFilter(self.testsuites(), function (testsuite) {
            return (isSystemCorrect(testsuite.System(), self.dropdownSelected()));
        });
    }, self);

    // Function for populating the testsuites observableArray
    self.cacheTestsuites = function (data) {
        self.testsuites(ko.mapping.fromJS(data));
    };


    self.populateDropdown = function(testsuiteArray) {

        for (var i = 0, len = testsuiteArray().length; i < len; ++i) {

            var firstNodeInSystem = testsuiteArray()[i].System().split("/")[0];

            var allreadyExists = ko.utils.arrayFirst(self.dropdownOptions(), function(option) {
                return (option.Name === firstNodeInSystem);
            });

            if (!allreadyExists) {
                self.dropdownOptions.push({ Name: firstNodeInSystem });
            }
        }
    };
}


$(document).ready(function () {

    $.getJSON("/api/TestSuites", function (data) {
        vm.cacheTestsuites(data);
        vm.populateDropdown(vm.testsuites());
        ko.applyBindings(vm);
    });
}

函数是系统正确的:

function isSystemCorrect(system, partialSystem) {

    // Check if partialSystem is contained within system. Must be at beginning of system and go
    // on to the end or until a "/" character.
    return ((system.indexOf(partialSystem) == 0) && (((system[partialSystem.length] == "/")) ||     (system[partialSystem.length] == null)));
}
4

1 回答 1

2

正如评论中所建议的 - 重写 cacheTestsuites 方法:

self.testsuites = ko.observableArray();
self.filteredTestsuites = ko.computed(function () {
    return ko.utils.arrayFilter(self.testsuites(), function (testsuite) {            
        return (isSystemCorrect(testsuite.System(), self.dropdownSelected()));
    });
});
self.cacheTestsuites = function (data) {
    var a = ko.mapping.fromJS(data);
    self.testsuites(a());
};

这里唯一不同的是从映射函数中解包 observableArray。

于 2015-01-15T10:19:02.253 回答