且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

选择ExtJs后更改图像

更新时间:2023-12-04 12:34:46

您将需要处理文件上载字段的事件以读取事件并将图像检索为数据URL并将其手动设置为图像组件.

You will need to handle file upload field's event to read event and retrieve image as data URL and set it manually to image component.

以下是使用ExtJS 5.x实现此目的的工作代码:

Ext.application({
    name: 'Fiddle',

    launch: function () {
        Ext.create('Ext.panel.Panel', {
            renderTo: Ext.getBody(),
            title: "FileUpload Filed with Image Preview",
            items: [{
                xtype: "filefield",
                listeners: {
                    'change': function (newVal) {
                        var file = newVal.fileInputEl.el.dom.files[0];
                        var reader = new FileReader();
                        console.log(reader);
                        reader.readAsDataURL(file);
                        reader.onload = function (evt) {
                            var image = Ext.getCmp("imageid");
                            image.setSrc(evt.target.result);
                        }
                    }
                }
            }, {
                id: "imageid",
                xtype: "image",
                style: "border: 1px solid black",
                width: 500,
                minHeight: 200,
                height: 'auto'
            }]
        });
    }
});

工作中的小提琴: https://fiddle. sencha.com/#view/editor&fiddle/2ds2