将 servlet 的响应放入 struts 模板的tile中
我已经将 servlet 设置为通过 struts 操作调用,结果是将 html 写入屏幕。但是,我正在使用模板系统(比如说页眉、内容、页脚)并且只想写入内容标题,即。保留页眉和页脚。
有人知道这是否可能吗?
谢谢, 齿轮。
I've set up my servlet to get invoked through a struts action and the result is that it writes html to the screen. However, I'm using a template system (lets say header, content, footer) and would only like to write to the content title ie. keep the header and footer.
Does anybody know if this is possible?
Thanks,
Gearoid.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将输出分为 3 个过程,其中 mb 是 getHeader()、getContent() 和 getFooter(),然后仅将输出写入 getContent() 中。或者您可以使用 JSP include,并编写包含 jsps:header.jsp 和 footer.jsp,并且在生成内容输出时,只需包含此 jsps。我更喜欢第二种方法。
更新:也许这个可以帮助你:Struts 平铺
You can either divide your output to 3 procedures, which mb are getHeader(), getContent() and getFooter(), and then write your output only in getContent(). Or you can use JSP includes, and write to include jsps: header.jsp and footer.jsp, and, while generating content output, just include this jsps. I would prefer second way to do it.
UPDATE: maybe this one can help you: Struts tiling
在jsp中使用iframe,并更改iframes src。然后页面将按您的预期加载。
如果您找到其他解决方案,请发布。
Use Iframe in jsp, and change the iframes src.Then the page will load as you expected.
Please post if you found some other solution to this.