我有以下输入,它会更新模糊事件的模型。
<input
es-max-type
class="headline"
ng-change="edit(selectedRow, '{{selectedRow.name}}');"
ng-model="selectedRow.name"
ng-model-options="{ updateOn: 'blur' }"/>
es-max-type 指令正在监视字符串长度。
scope.$watch(function() {
return scope.ngModel
}, function(text) {
if(text) {
scope.currentLen = text.length;
}
});
每当输入聚焦时,我都会在角落显示“15/100”个字符。但由于模型仅在模糊事件时更新,我无法在编辑过程中跟踪更改。有没有办法在不删除模糊更新的情况下获得字符串长度?