首頁 > 問答 > 主體
現在遇到一個問題,Select的值是透過遠端取得的,以下是伺服器回傳的json
當我用ng-options綁定到select後,option的value是這樣的格式:
怎麼有number:1這種樣子哦,如何去掉另外,提交表單後怎麼取得選取的值呢? 感謝各位
阿神2017-05-15 17:11:42
首先寫法是這樣的
1
<code><select ng-model="xxx" ng-options="item.name for item in fishBreed track by item.fish_breed_id"></select></code>
<code><select ng-model=
"xxx"
ng-options=
"item.name for item in fishBreed track by item.fish_breed_id"
></select></code>
ng-model裡取出的就是你選取的對象, 雙向綁定會透過item.fish_breed_id綁定值
漂亮男人2017-05-15 17:11:42
js:$scope.toString = function(){
html: