最初的问题询问如何确定哪个元素称为控制器blurr
功能,但我没有澄清我不是专门询问ng-blur
ng-* ( ng-change
, ng-focus
, ng-mouseover
, ng-*) 。所以,考虑到这一点:
blurr()
和/或check()
函数?
html
<body ng-app="test">
<div ng-controller="Cntrlr as cntrlr">
<form name="meta_test">
<input type="text" name='inpt' ng-model="cntrlr.inpt" ng-blur="cntrlr.blurr()" ng-change="cntrlr.check()" />
<input type="text" name='second' ng-model="cntrlr.second" ng-blur="cntrlr.blurr()" ng-change="cntrlr.check()" />
</form>
</div>
</body>
js
var app = angular.module("test", []);
app.controller("Cntrlr", ["$scope", function($scope){
this.blurr = function(){
alert("which input am I?");
alert("this is so meta.");
// ?
};
this.check = function(){
alert("this is how meta I am:");
alert(this);
}
$scope.Cntrlr = this; // see: (reference)
return $scope.Cntrlr;
}]);
您可能会问自己“他为什么要这样做?”
有2个原因:
因为我想打电话:
$scope.user_form[meta_test.[(whatever this element is.name)]].$setValidity('spike', false);
因为我很好奇。必须有一个简单的方法来做到这一点。
(参考): 控制器作为语法