为什么在struts中使用
发布于 2024-10-07 06:41:38 字数 126 浏览 4 评论 0 原文

为什么在struts中使用而不是

why use<bean:include instead of <jsp:include in struts?

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

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

发布评论

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

评论(2

属性 2024-10-14 06:41:38

来自 bean:include 的文档

执行对指定应用程序组件(或外部 URL)的内部调度,并使来自该请求的响应数据可用作 String 类型的 bean。该标记的功能与标准 jsp:include 标记的功能类似,只不过响应数据存储在页面范围属性中而不是写入输出流。如果当前请求是会话的一部分,则生成的包含请求也将包括会话标识符(因此是同一会话的一部分)。

第一次在谷歌上点击

from the documentation for bean:include

Perform an internal dispatch to the specified application component (or external URL) and make the response data from that request available as a bean of type String. This tag has a function similar to that of the standard jsp:include tag, except that the response data is stored in a page scope attribute instead of being written to the output stream. If the current request is part of a session, the generated request for the include will also include the session identifier (and thus be part of the same session).

first hit on google

旧伤还要旧人安 2024-10-14 06:41:38

bean:include 的工作方式几乎与 jsp:include 相似,只是结果存储在页面范围内。这意味着当前页面上的代码可以访问结果并对其进行操作。 查看此页面

bean:include works almost like jsp:include except that the result is stored in the page scope. This means that your code on the current page can access the results and manipulate it. See this page.

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