我想建立一個基於數組的無線電選擇器,並將該鍵而不是該值返回給服務器。我可以得到ng模型的鍵值而不是ng值的值嗎?
這裏是數組:
$scope.customer_types = ['a', 'b', 'c', 'd', 'other'];
這裏是無線電選擇:
<label style="margin-right:15px"><input type="radio" ng-model="ctype" ng-value="customer_type" name="customer_type">{{customer_type}}</label>
現在$ scope.ctype將存儲選定的客戶類型,並返回一個數字,例如,如果我選擇other
它應該發送4
到服務器。我可以做這樣的相反過濾器,但在我看來,如果我可以使用類似ng-value="customer_type[key]"
這將是一個容易得多...