我正在尝试使用淘汰赛填充下拉列表。我用来填充 optionsText 的数组是一个 JSON 对象数组。我需要 optionsValue 是数组中对象的索引或序号。
我的 viewModel 中有以下代码:
self.job.submitOptionsArray = this.collection.toJSON();
this.job.applyPreset = ko.observableArray(self.job.submitOptionsArray);
在我看来:
<select name="" id="applyPreset" data-bind="options: applyPreset, optionsText: 'name', optionsValue: '???', value: somfn"></select>
我需要一个不使用 jQuery 的解决方案。