我正在通過API讓Json響應。單選按鈕值沒有進入控制器
var json = [{"Price":70},{"Price":100}];
我顯示上查看
<form name="InfoForm" novalidate >
<div class="list" ng-repeat="data in json" >
<ion-radio ng-value="data.Price" ng-model="test.Price">{{data.Price}}</ion-radio>
</div>
<button class="button button-full button-assertive" ng-click="goDetail(test)">Next</button>
</form>
Controller :
$scope.goDetail = function(data){
alert(JSON.stringify(data));
}
這個數據,但點擊按鈕,我沒有得到在controller.its顯示未定義選定的單選按鈕值。
與test.Price取代data.Price並嘗試 –
不,它不工作@Amin –
我不好。用data.Price替換test.Price並確保你的控制器可以訪問json。如果您沒有在控制器中定義它(我沒有看到它),請確保將其注入到控制器中。 –