自定义 JSP 标签 - 如何获取标签正文?
我有一个像这样的自定义 jsp 标签:
<a:customtag>
The body of the custom tag...
More lines of the body...
</a:customtag>
在自定义标签中,如何获取正文的文本?
I have a custom jsp tag like this:
<a:customtag>
The body of the custom tag...
More lines of the body...
</a:customtag>
In the custom tag, how can I get the text of what the body is?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它很复杂,因为有两种机制。
如果您要扩展 SimpleTagSupport,则会得到 getJspBody() 方法。它返回一个 JspFragment,您可以 调用(Writer writer)将正文内容写入writer。
您应该使用 SimpleTagSupport,除非您有特定原因使用 BodyTagSupport(如旧标签支持),因为它更简单。
如果您正在使用经典标记,则可以扩展 BodyTagSupport 并因此可以访问 getBodyContent() 方法。这将为您提供一个 BodyContent 对象,您可以从中检索正文内容。
It's complicated because there are two mechanisms.
If you're extending SimpleTagSupport, you get getJspBody() method. It returns a JspFragment that you can invoke(Writer writer) to have the body content written to the writer.
You should use SimpleTagSupport unless you have a specific reason to use BodyTagSupport (like legacy tag support) as it is - well - simpler.
If you are using classic tags, you extend BodyTagSupport and so get access to a getBodyContent() method. That gets you a BodyContent object that you can retrieve the body content from.
如果您使用 jsp 2.0 方法的自定义标记,您可以这样做:
make-h1.tag
在 JSP 中使用它:
If you are using a custom tag with jsp 2.0 approach, you can do it as:
make-h1.tag
Use it in JSP as:
扩展 Brabster 的答案,我使用
SimpleTagSupport.getJspBody()
将JspFragment
写入内部StringWriter
进行检查和操作:}
To expand on Brabster's answer, I've used
SimpleTagSupport.getJspBody()
to write theJspFragment
to an internalStringWriter
for inspection and manipulation:}