我有以下型号:
var allCategories = [{
id: 1,
name: 'Red'},
{
id: 5,
name: 'Blue'}];
function model() {
self = this;
self.name = ko.observable("");
self.categoryId = ko.observable(-1);
self.categoryName = ko.computed(function() {
if (self.categoryId() == -1) return "";
return getCategoryNameById(self.categoryId()).name;
});
}
function getCategoryNameById(id) {
return _.find(allCategories, function(cat) {
return cat.id == id;
});
}
我想提供一个下拉列表来选择类别,但我不知道如何绑定它。也许我对我的模型使用了错误的方法,但这很可能是我从服务器获取数据的方式,所以我试图将我的 JS 包装在它周围。
我试过这样的事情:
<select data-bind="options: categories, optionsText: 'name', value: 'id', optionsCaption: 'Categorie...'"></select>
但我不知道如何将下拉值连接到模型categoryId
。
这是一个用于 name 属性的工作绑定的小提琴。