从 iframe 中调用 jsp 页面
我有一个问题,比如当我从 iframe 中调用 jsp 页面时,是先调用 struts 方法,然后操作类呈现 jsp 页面还是直接调用 jsp 页面。
I have a question like when i call the jsp page from within iframe, is the struts method get called first and then the action class renders the jsp page or the jsp page get called directly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,如果您直接调用 JSP 页面并且没有定义任何可能修改或重新路由请求的过滤器(代理),那么您的 JSP 会被直接调用。
Yes, if you directly call the JSP page and you do not have any filters (proxies) defined which may modify or reroute the request, then your JSP gets called directly.