在显示字段中获取值 Ext JS 5

Get value in display field Ext JS 5

我想将显示字段中的内容输出到控制台。

 var getValue = Ext.getCmp('fieldID').getValue();

//That doesn't seem to be getting anything, tips?

这里的tmp是我在主页使用的字段的Id

Ext.onReady(function() {
     var value = Ext.getCmp('tmp').getValue();
     alert("value");
});