gpt4 book ai didi

javascript - 将 javascript 数组传递给新的 ExtJS 弹出窗口

转载 作者:行者123 更新时间:2023-11-28 18:58:16 25 4
gpt4 key购买 nike

我一直在尝试将图像数组作为参数传递给新的 ExtJS 弹出窗口。我在下面的链接中找到了这个

Extjs pass in parameters to window on show

但是当我在我的应用程序中尝试这个时,它显示未定义。下面是我的代码。

    this.btnControlPDF = Ext.create('Ext.button.Button', {          
width: 40,
height:33,
border:0,
disabled : false,
style: 'margin: 13px 1px 1px 5px;',
cls : 'icon-button-ControllListButtonPDF',
enableToggle: true,
toggleGroup: 'AccumulateToolButtons',
handler : function(myButton) {
this.reportWindow = Ext.create('Ext.view.ReportExportView');
this.reportWindow.myExtraParams = { imgArray : imgArray };
this.reportWindow.show();
return;
}
});

Ext.view.ReportExportView 扩展 Ext.window.Window

我想要的是一种将 JavaScript 数组变量传递到新的 ExtJS 弹出窗口并能够在窗口中访问该变量的方法。

我找到了 HTML5 localStorage.getItem()。我可以用它来存储我的数组吗?

谢谢!斯图

最佳答案

我希望您希望在 ReportExportView 窗口内以及从 this.reportWindow 访问 myExtraParams 数据。如果是这样,请尝试此代码。

 this.reportWindow = Ext.create('Ext.view.ReportExportView', {
myExtraParams : { imgArray : imgArray }
} });
this.reportWindow.show();

ReportExportView 访问 myExtraParams 的方法。

Ext.define('Ext.view.ReportExportView', {
extend: 'Ext.window.Window',
alias: 'widget.reportwindoww',
width: 500,
height: 250,
layout: 'fit',
initComponent: function(){
console.log(this.myExtraParams);
//You can write the remaining code here.
this.items = [{
xtype: 'panel',
...............
...............
}];
this.callParent(arguments);
}
});

关于javascript - 将 javascript 数组传递给新的 ExtJS 弹出窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33162892/

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