struts2 iframe加载中连接参数

发布于 2024-12-27 22:05:15 字数 501 浏览 0 评论 0原文

使用 Struts2,我成功地使用 iframe 在 jsp 页面中加载外部 URL,如下所示:

<iframe src="http://www.abcd.com/somedir/index.php">
</iframe>

我还能够在 URL 中传递请求参数,如下

<iframe src="http://www.abcd.com/somedir/index.php?sid=999">
</iframe>

所示: 当我尝试连接该参数,从Strus2 堆栈:

<iframe src="http://www.abcd.com/somedir/index.php?sid=<s:property value="sid" />">
</iframe>

有人可以帮助我实现这一目标吗?

谢谢

using Struts2, I successfully load an external URL inside a jsp page using an iframe like this:

<iframe src="http://www.abcd.com/somedir/index.php">
</iframe>

I’m also able to pass a request parameter in the URL like this:

<iframe src="http://www.abcd.com/somedir/index.php?sid=999">
</iframe>

The problem comes when I try to concatenate that parameter, loading it from the Strus2 stack:

<iframe src="http://www.abcd.com/somedir/index.php?sid=<s:property value="sid" />">
</iframe>

Could some body help me to achieve that?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无畏 2025-01-03 22:05:15

Jigar 和 Umesh,抱歉耽误了..

我最终使用了这样的东西:

<iframe src="http://www.abcd.com/somedir/index.php?sid=<s:property value="#parameters.sid" />">
</iframe>

...并通过以下方式调用:

http://www.xyz.com/somenamespace/someaction?sid=123456

Jigar and Umesh, sorry for the delay..

I finally use something like this:

<iframe src="http://www.abcd.com/somedir/index.php?sid=<s:property value="#parameters.sid" />">
</iframe>

...and the invocation through:

http://www.xyz.com/somenamespace/someaction?sid=123456
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文