2017-11-22 20 views
1

私はangularjsで新しく、私が間違っている場合は私をクリアしてください。ng-change機能からng-click機能を呼び出す

私は1つの選択を使用して値を取得したいと思いますし、値に基づいてアクションを実行します。例: "DELETE"が表示されたら、名前を削除してng-click機能に送信します。以下は、私のコードは次のとおりです。 -

html.jsp

<body ng-app ng-controller="AppCtrl"> 
<select ng-model="some_action.type" ng-change="actionchange(some_action.type)" ng-options="type.value as type.displayName for type in types"> 
</select> 
</body> 

script.js

function AppCtrl($scope) { 

     $scope.some_action={ 
      type: 'Select' 
     } 

     $scope.types = [ 
      {value: 'DELETE', displayName: 'Delete'}, 
      {value: 'SUSPEND', displayName: 'Suspend'} 
     ] 
    } 

$scope.actionchange= function(value) { 
    console.log('change action is -'+ value); 
    //here I will fetch some ids which will sent to some other's click function 
}; 

だから私は別々に両方のアクションのためにNGクリック機能を使用してしたいですよng-clickを呼び出すng-changeから使用してください。

答えて

0
​​
関連する問題