2
これを再作成する。これは、私のJSON形式の出力ブロック角度ドロップダウンは
webfront{"id":1","customer_fields":[{"id":78,"webfront_id":1,"input_type":2}]}
ある
<select name="input_type0" id="select-type-CA0" ng-model="webfront.customer_fields[$index].input_type" class="ng-valid ng-not-empty ng-touched ng-dirty">
<option value="? number:2 ?"></option>
<option value="Type">Type</option>
<option ng-selected="webfront.customer_fields[$index].input_type == 1" value="1">Textbox</option>
<option ng-selected="webfront.customer_fields[$index].input_type == 2" value="2" selected="selected">Text area</option>
<option ng-selected="webfront.customer_fields[$index].input_type == 3" value="3">Radio Button</option>
<option ng-selected="webfront.customer_fields[$index].input_type == 4" value="4">Dropdown</option>
</select>
私の角度のjs htmlのブロックである私が編集していながら、ドロップダウン値が移入されていません。私は、私はあなたがng-options
を使用するように変更する必要があり、その解決策
を参照してください。より良い解決策はありますか? –
何が動作していないかを説明します。 Jsfiddleをチェックすると、それが動作することがわかります。あなたはおそらくあなたが何か他のことを期待していることを意味しているので、詳しく教えてください。 – devqon
これを追加します。私のドロップダウンビームの最初のオプションは空です –