我在默認情況下檢查我的角應用程序中的一些複選框。這些都是在ng-pristine state.How可以在我的控制器中接收這些輸入時,表單張貼而不使他們骯髒。
<input type="checkbox" name="c1" name="favoriteColors" ng-model="data.checkboxtest[1]" ng-checked="true"> <input type="checkbox" name="c2" name="favoriteColors" ng-model="data.checkboxtest[2]">
發送原始輸入角控制器
控制器:
$scope.submitNewTemplate = function(){ console.log($scope.data.checkboxtest) }
返回 「未定義」
感謝,不解決我的問題answer.but。實際上,我的複選框輸入將通過下拉菜單動態更改,而不會觸及複選框。 –