我有一个表单,您可以在其中添加多个任务,每个任务都有一个标题和一个选项,如果您选择了一个特定选项,我想添加一个表格,您可以在其中添加一个或多个注释。我想不通的是如何将任务的注释绑定到该特定任务以及如何收听每个任务的 selectedOption?这是我第一次使用淘汰赛。
<fieldset data-bind="foreach: tasks">
Title:<input type="text" data-bind="value: title"/>
Option: <select data-bind="options: $root.option, optionsCaption: 'Select', value: selectedOption"></select>
<table>
<tbody data-bind="foreach: notes ">
<tr>
<td><input type="text" data-bind="value: note"/></td>
</tr>
</tbody>
</table>
<button data-bind="click: addRow">Add note</button>
</fieldset>
<button data-bind="click: addTask">Add task</button>