当前位置: 代码迷 >> JavaScript >> Knockout 绑定选择与具有可观察属性的自定义对象
  详细解决方案

Knockout 绑定选择与具有可观察属性的自定义对象

热度:85   发布时间:2023-06-03 17:55:03.0

我正在尝试将<select>与 Knockout 绑定。 在我的 ViewModel 中,我有 2 个不同的对象,每个对象都有可观察的属性。

第一个对象是Property ,它有一个headquarter_id作为ko.observable() 第二个对象是Headquarter ,它有一个id和一个name ,都是ko.observable()

我想要做的是将选择与Headquarter对象的ko.observableArray()绑定,如下所示:

<select id="headquarters" data-bind="options: HeadquarterOptions, optionsText: name, optionsValue: id, optionsCaption: '--Select--', value: Property().headquarter_id"></select>

但我不断得到:

未捕获的 ReferenceError:无法处理绑定“选项:函数(){返回总部选项}”
消息:id 未定义

这是我的 ViewModel 的样子:

var Property = function () {
    var self = this;
    self.headquarter_id = ko.observable();
}

var Headquarter = function (id, name) {
    var self = this;
    self.id = ko.observable(id);
    self.name = ko.observable(name);
}

var headquarterOptions = [
        new Headquarter(1, "hq 1"),
        new Headquarter(2, "hq 2"),
        new Headquarter(3, "hq 3"),
    ]

var PropertiesViewModel = function (app, dataModel) {
    var self = this;
    self.Property = ko.observable(new Property());
    self.HeadquarterOptions = ko.observableArray(headquarterOptions);
}
    
ko.applyBindings(PropertiesViewModel);

我怎样才能做到这一点?
这是我目前的小提琴: :

你去

<select class="form-control" id="headquarter" data-bind="options: HeadquarterOptions, optionsText: 'name', optionsValue: 'id', optionsCaption: '--Select--', value: Property().headquarter_id"></select>

您在 name 和 id 周围缺少单引号。

optionsValueoptionsText应该声明为函数而不是值( ):

optionsText: function(item) {return item.name; }
optionsValue: function(item){ return item.id; }

查看更新的小提琴: :