我在plnkr中提供的角度js中编写了一个自定义指令, 当指令被加载时它已经调用了MainCtrl上的changed()函数,我需要停止changed()函数,直到数据加载到指令中,之后,它应该开始观察指令内输入的变化, BTW的changed()函数应该在MainCtrl中,因为它在example中,所以有没有办法在将数据加载到指令之前停止执行ng-change? 这是代码:
var app = angular.module('plunker', []);
app.controller('MainCtrl', function($scope) {
$scope.name = "someName";
$scope.statusText = "unChanged";
$scope.changed = function(){
$scope.statusText = "changed";
};
});
app.directive("myDirective", function () {
return {
restrict: 'EA',
scope: {
ngModel: "=",
ngChange: "="
},
templateUrl: "template.html",
link: function ($scope, elem, attrs) {
}
}
});
<!DOCTYPE html>
<html ng-app="plunker">
<head>
<meta charset="utf-8" />
<title>AngularJS Plunker</title>
<script>document.write('<base href="' + document.location + '" />');</script>
<link rel="stylesheet" href="style.css" />
<script data-require="angular.js@1.5.x" src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.5.11/angular.min.js" data-semver="1.5.11"></script>
<script src="app.js"></script>
</head>
<body ng-controller="MainCtrl">
<my-directive ng-model="name" ng-change="changed()"></my-directive>
<p>{{statusText}}</p>
<script type="text/ng-template" id="template.html">
<input type="text" ng-model="ngModel" ng-change="ngChange" >
</script>
</body>
</html>
答案 0 :(得分:0)
ngModel
和ngChange
,它与angularhs的内置指令相冲突。参考此plunker(我刚刚从你的问题中分出来)。