0
選択リストのoptionsValueを のオプション配列にバインドすることはできますか?オプションのテンプレートを配列のインデックスにバインドする
<select data-bind="options: options, optionsText: 'text',
optionsValue: ko.utils.arrayIndexOf(**somevalue**)" />
それとも、私が
<select data-bind="options: options, optionsText: 'text',
optionsValue: 'id' />
おかげ
を{
text: 'asdasd'
}
から
{
text: 'asdasd',
id: 0
}
に私のオプションオブジェクトを変換することとやって立ち往生しています
ありがとう。これは私が期待したものではありませんが、実際にはうまくいくでしょう。 –