在我的应用程序中基本上是用 extjs 编码的,我有一个用 flex 4 编码的模块,问题是 flex 在第一次加载时需要很长时间,所以我想知道我是否可以在用户需要它之前预加载 flex
这是托管 flex 应用程序的 ext 窗口的代码:
function openPdf(){
var user = Ext.get('userName').getValue();
PlanRs = new Ext.Window({
width:'100%',
autoHeight:true,
autoScroll:true,
html:'<iframe src ="PlanRs/index/bin-debug/index.html?user='+user+'" ></iframe>',
bbar:[{
text:'Close',
handler:flexAppCloseHandler
}]
})
PlanRs.show();
}
我试图实例化窗口并使其不可见,直到用户调用没有成功!