7
我有一個類別下拉列表,它控制一個子類別下拉列表。如果所選類別的子類別數組爲空,我想隱藏子類別下拉列表。淘汰js與'綁定,隱藏如果數組爲空
示例代碼如下:
<script>
self.categories = ko.observableArray([
{"name": "top 1", "subcategories":[
{"name": "sub 1"},
{"name": "sub 2"}
]},
{"name": "top 2", "subcategories":[]}
]);
self.selected_category = ko.observable();
self.selected_sub_category = ko.obserable();
</script>
<div>
<select data-bind="options: categories, optionsText: "name", optionsCaption: "Select", value: selected_category"></select>
</div>
<div data-bind="with:selected_category">
<select data-bind="options: subcategories, optionsText: "name", optionsCaption: "Select", value: selected_sub_category"></select>
</div>
感謝nemesv。有沒有辦法將with和if結合成一個data-bind屬性。原因是如果div完全沒有呈現,我更喜歡它。 –
「if」和「with」不能合併到數據綁定屬性中。如果你嘗試了它,你會得到如下錯誤信息:「多個綁定(使用和如果)試圖控制相同元素的後代綁定,你不能在同一個元素上一起使用這些綁定。但你把它們移到「外面」看到我更新的答案。 – nemesv