gpt4 book ai didi

javascript - EXT JS 将内容图像数据加载到窗口中

转载 作者:行者123 更新时间:2023-11-30 13:18:23 27 4
gpt4 key购买 nike

我在使用 EXT JS 将图像数据加载到可拖动窗口时遇到问题。

流式传输图像文件的进程的链接在代码中。

我试过

var plotWin = Ext.create('Ext.Window', {
title: 'Plot',
width: 600,
height: 400,
x: 10,
y: 200,
loader : {
url : "http://209.105.242.30/custom/webimg",
autoLoad : true,
renderer : 'data'
},
plain: true,
headerPosition: 'top',
layout: 'fit',
items: {
border: false
}
});

然后

plotWin.show();

但这似乎行不通。

最佳答案

看起来该 url 是跨域的,这意味着它无法通过 ajax 加载。如果是图片,为什么不直接嵌入呢?

var plotWin = Ext.create('Ext.Window', {
title: 'Plot',
width: 600,
height: 400,
x: 10,
y: 200,
plain: true,
headerPosition: 'top',
layout: 'fit',
items: {
xtype: 'image',
src: "http://209.105.242.30/custom/webimg"
}
});

关于javascript - EXT JS 将内容图像数据加载到窗口中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11198314/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com