我目前在 Zend Framework 1.9 应用程序中使用 extJS4 作为用户界面。目前,我正在创建一个弹出窗口,我想在其中显示特定数据,具体取决于调用 iframe 的页面所具有的数据。
当我点击相应的按钮时,我已经创建了 iframe
upWin=new Ext.Window({
title : "iframe",
width : 300,
height: 300,
layout : 'fit',
items : [{
xtype : "component",
autoEl : {
tag : "iframe",
src : "<?= $this->baseUrl("/mytest.php")?>"
}
}]
});
upWin.show();
我的问题是如何将所需的内容/数据传输到其中。如果可能的话,我不想在那里使用 GET 参数,那么还有其他选择吗?(我在 mytest.php 中需要的数据示例是 id 和标题文本,....所以我不需要为使用此 iframe 的每个变体创建一个新的 .php 页面)。
编辑:为了更清楚地表述它...... get 参数或 URL 参数是我不想使用的东西(因此我不想使用 /mytest.php?param1=value1¶m2=value2. .......如果可以避免)。