私は次のモデルを持っています:
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 プロパティの有効なバインディングを備えたフィドルです。