struts2 iframe加载中连接参数
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Jigar 和 Umesh,抱歉耽误了..
我最终使用了这样的东西:
...并通过以下方式调用:
Jigar and Umesh, sorry for the delay..
I finally use something like this:
...and the invocation through: