大家。 我在使用angularjs时遇到了麻烦。我为输入[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:"&"
}
};
});
答案 0 :(得分:0)
在console.log
内包裹$timeout
。
$scope.ChangeVal = function() {
$timeout(function() {
console.log($scope.val);
})
};
请参阅working plunker。