查看来自AngularJS in Action的练习,我正在尝试实施ng-change
行为,以便在更改{{1}时更新select
的下拉值}。
JS
story.status
请注意,当我选择一个故事时,$scope.setCurrentStatus = function(status) {
if(typeof $scope.currentStory !== 'undefined') {
$scope.currentStory.status = status.name;
}
};
$scope.setCurrentStory = function(story) {
$scope.currentStory = story
$scope.currentStatus = $scope.statusesIndex[story.status];
$scope.currentType = $scope.typesIndex[story.type];
console.log("$scope.currentType", $scope.currentType);
};
的记录会执行,而不是setCurrentStory
。
HTML
setCurrentStatus