我想要使用foreach和複選框將Knockout observableArray綁定到我的UI,然後根據所檢查的內容創建一個數組。KnockoutJS observableArray與模板和foreach
我收到此錯誤: 未捕獲的ReferenceError:無法處理綁定「template:function()。。。」
這裏是我的HTML:
<dl data-bind="template: { name: 'QuarterTemplate', foreach: Quarter, templateOptions: { selections: SelectedQuarters } }"></dl>
<script id="QuarterTemplate" type="text/html">
<dd>
<label>
<input type="checkbox" data-bind="attr: { value: quarter }, checked: $item.selections" />
<a data-bind="text: quarter" ></a>
</label>
</dd>
</script>
這裏是我的淘汰賽視圖模型:
function ViewModel() {
this.Quarter = ko.observableArray([
{ quarter: "Q1" },
{ quarter: "Q2" },
{ quarter: "Q3" },
{ quarter: "Q4" }
]);
this.SelectedQuarters = ko.observableArray();
this.SelectedQuarters.subscribe(function() {
console.log(this.SelectedQuarters());
});
}
$(document).ready(function() {
ko.applyBindings(new ViewModel());
});
我也有一個小提琴設置:
最後我想要什麼在控制檯中看到的是這樣的:
Q1
Q1,Q3
Q1,Q3,Q2
Q1,Q3,Q2,Q4
Q1,Q2,Q4