如何以编程方式从 Struts2 标签获取嵌套组件?
如何从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 org.apache.struts2.components.Component 类中的 getComponentStack() 方法。
use getComponentStack() method from the org.apache.struts2.components.Component class.