如何以编程方式从 Struts2 标签获取嵌套组件?

发布于 2024-07-26 15:05:06 字数 322 浏览 4 评论 0原文

如何从 struts2 标签中获取所有嵌套标签元素? 例如 form 标签中的 text 和 checkbox 标签?:

<s:form>
 <s:text .../>
 <s:checkbox .../
<s:form>

我知道 form 是 strust-tags.tld 中定义的标签,它扩展了org.apache.struts2.views.jsp.ui.FormTag, 但它如何在幕后获取嵌套标签呢?

How can i get all the nested tag elements from a struts2 tag?
for instance text and checkbox tags from form tag?:

<s:form>
 <s:text .../>
 <s:checkbox .../
<s:form>

I know that form is a tag defined in strust-tags.tld and it extends the org.apache.struts2.views.jsp.ui.FormTag,
but how does it goes behind the scene to get the nested tags ?

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

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

发布评论

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

评论(1

悲欢浪云 2024-08-02 15:05:06

使用 org.apache.struts2.components.Component 类中的 getComponentStack() 方法。

use getComponentStack() method from the org.apache.struts2.components.Component class.

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