gpt4 book ai didi

javascript - 在 iframe 中使用 URL 参数过滤 View ?

转载 作者:行者123 更新时间:2023-11-28 06:47:48 29 4
gpt4 key购买 nike

我在 extjs 中使用 iframe,我想根据 url 参数显示不同的 View 。

items: [{
xtype: "component",
autoEl: {
tag: "iframe",
src: "/xyz/bin/view/Main/?key=abcd",
html: "Loading...",
}
}]

这里我显示 xyz Web 应用程序索引页面,我想通过同一 iframe 中的 url 参数显示该应用程序的另一个页面。我们应该怎么做?

https://localhost/DEMOApp/client=ABC&page=sop1

最佳答案

我得到了这个问题的解决方案。我通过添加监听器 afterrender 并获取 iframe 对象并设置 src 来做到这一点。

listeners: {
afterrender: function () {
var params=Ext.urlDecode(location.search.substring(1));
Ext.get('iframe').dom.src = "http://www.google.com";

this.getEl().on('load', function () {
console.log('loaded');
});
}

关于javascript - 在 iframe 中使用 URL 参数过滤 View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33235911/

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