extjs的textfield中显示后台传来的数据

2024-12-05 10:44:16
推荐回答(2个)
回答(1):

//这里是一个文本框
items: [{
    xtype: 'textfield',
    id: 'txt',
    name: 'yx'
}]

//这里是一个ajax请求
Ext.Ajax.request({
    url: 'xxx',
    method: 'GET',
    success: function(response) {
        var respText = Ext.decode(response.responseText);
        //调用文本域的方法,设置它的值~
        Ext.getCmp('txt').setValue(respText);
    }
});

extjs的每个组件都有很多方法,具体的多去看看api,基本上没有实现不了的功能


有不懂,欢迎追问

回答(2):

setValue即可