答案 0 :(得分:1)
使用Extjs 5/6,您可以使用viewModel执行此操作,例如:
Ext.widget('container', {
viewModel: {
data: {
value: ''
},
formulas: {
count: {
bind: '{value}',
get: function(value){
return 140 - value.length;
}
}
}
},
items: [{
xtype: 'textareafield',
enforceMaxLength: true,
maxLength: 140,
bind: '{value}'
}, {
xtype: 'box',
bind: '{count}'
}]
})