ExtJS 改变标签值

ExtJS change label value

我正在尝试使用此显示当前日期和时间:

var currentDate = new Date();

然后使用下面的代码更新我的标签,但没有用:

var controller = this;
var refs = controller.getReferences();

refs.dateLabelId.text.setValue = currentDate;

dateLabelId 是我的标签的引用


问题已解决

refs.dateLabelId.label.setText(currentDate)

问题已解决:

refs.dateLabelId.label.setText(currentDate)

您还可以像这样更新字段标签:

refs.dateLabelId.setFieldLabel(当前日期);