每个人。我遇到了 angularjs 的问题。我为 input[type="text"] 创建了自定义指令并作为模型传递给变量。但是 ng-change 事件调用了具有先前变量值的函数。示例:状态:0,类型 1,功能中 - 0。状态:1,类型 548,功能中 - 1。状态:548,类型 3,功能中 548。
我的html:
<div ng-controller="simpleCTRL">
<mr-textfield is-required="true" value="val" title="Minutes" type="text" change="ChangeVal()"></mr-textfield>
<input type="text" ng-model="val" ng-change="ChangeVal()"/>
</div>
</div>
和js:
<!-- language: lang-js -->
angular.module('SimpleInterestApp', [])
.controller('simpleCTRL', function($scope) {
$scope.val = 0;
$scope.ChangeVal = function() {
console.log($scope.val);
};
})
.directive('mrTextfield', function () {
return {
restrict: 'E',
template: "<div class='textfield'><input type='{{::type}}' ng-required='isRequired' ng-model='value' ng-change='change()'><span class='bar'></span><label>{{::title}}</label></div>",
replace: true,
transclude: true,
scope: {
value:"=",
title:"@",
type:"@",
isRequired:"=",
change:"&"
}
};
});