问题描述
我正在尝试将<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);
我怎样才能做到这一点?
这是我目前的小提琴: :
1楼
Ibrahim Ahmed
3
已采纳
2015-07-26 10:05:14
你去
<select class="form-control" id="headquarter" data-bind="options: HeadquarterOptions, optionsText: 'name', optionsValue: 'id', optionsCaption: '--Select--', value: Property().headquarter_id"></select>
您在 name 和 id 周围缺少单引号。
2楼
Yevgen Safronov
2
2015-07-26 10:02:47
optionsValue
和optionsText
应该声明为函数而不是值( ):
optionsText: function(item) {return item.name; }
optionsValue: function(item){ return item.id; }
查看更新的小提琴: :