こちらを参照してください。
オブジェクト (オブザーバブルなし) をチェックボックスとラジオ値にバインドして、取得する値 (値と値) が通常のオブジェクト (オブザーバブルなし) になるようにする方法。
HTML:
Selection List
<a class="pull-right" href="#" data-bind="click: addChoice">+</a>
<table class="selection" data-bind="foreach: Choices">
<tr>
<td><input type="text" data-bind="value: Id" /></td>
<td><input type="text" data-bind="value: Text" /></td>
</tr>
</table>
Checkbox Values: <br />
<!-- ko foreach: {data: Choices() } -->
<input type="checkbox" data-bind="value: ko.toJS($data), checked: $root.Values" /><span data-bind="text: Text" ></span><br />
<!-- /ko -->
Radio Value: <br />
<!-- ko foreach: {data: Choices() } -->
<input type="radio" data-bind="value: ko.toJS($data), checked: $root.Value" /><span data-bind="text: Text" ></span><br />
<!-- /ko -->
<pre data-bind="text: ko.toJSON($root, null, 2)"></pre>
Javascript:
function VM () {
var self = this
self.Value = ko.observable()
self.Values = ko.observableArray([])
self.Choices = ko.observableArray([])
self.Choice = function (id, text) {
this.Id = ko.observable(id)
this.Text = ko.observable(text)
}
self.addChoice = function () { self.Choices.push(new self.Choice("C" + (self.Choices().length + 1), "Text Here")) }
}
var vm = new VM()
ko.applyBindings(vm)