有以下控制器代碼:HTML選擇與NG-變化不起作用
$scope.types = ['First', 'Second', 'Third']
$scope.type = $scope.types[0]
$scope.changeType = function() {
console.log($scope.type)
}
HTML代碼:
<select class="form-control" id="type" name="type" ng-change="changeType()" ng-model="type" ng-options="type for type in types" />
我看到的選擇,一切都很好,但是當我嘗試改變select中的值,我總是在控制檯中看到'First'。有什麼麻煩?我該如何解決它?謝謝。
這對我的作品 - http://jsfiddle.net/5DMjt/2179/ –