1

観測可能な配列の値を取得してドロップダウンに表示したいのですが、観測可能な配列が変更されたときにドロップダウンの値を更新したくありませんか? 他の理由から、配列は監視可能でなければなりません。

これを行う簡単な方法があることを私は知っています!

これは、私が意味することと以下のコードを説明するためのフィドルです。

ビューモデル:

ViewModel = function () {
    var self = this;
    self.Owners = ko.observableArray([
        {FullName: 'Bob Jones',Id: 1},
        {FullName: 'Joe Bloggs',Id: 2},
        {FullName: 'Joe Bloggs',Id: 2}
    ]);

    self.GetOwners = function () {
        var ownerIds = [],
            addedIds = [],
            count = 0;

        var owners = ko.utils.arrayForEach(self.Owners(), function (owner) {
            if (addedIds.indexOf(owner.Id) == -1) {
                addedIds[count] = owner.Id;
                ownerIds[count] = {
                    FullName: owner.FullName,
                    Id: owner.Id
                };

                count++;
            }
        });

        return ownerIds;
    }

    self.Add = function() {
        self.Owners.push({ FullName: 'Jane Doe', Id: 3 });
    }
};

var vm = new ViewModel();
ko.applyBindings(vm);

HTML:

<select data-bind="options: GetOwners(), optionsText: 'FullName', optionsValue: 'Id'">    </select>
<!-- I dont want the values in this select to update when I add an owner by clicking the button below -->

<button data-bind="click: Add">Add</button>
4

1 に答える 1

4

ドロップダウンの値に 2 番目の observableArray を使用する必要があるようです。そうすれば、元のオブザーバブルは影響なく変更できます。

于 2013-02-14T02:04:28.673 に答える