创建自定义 JSP 标记
我正在尝试创建一个自定义 JSP 标记,该标记将采用数组对象并在 HTML 表中显示该标记的元素。 有人对如何做到这一点有建议吗?
I'm trying to create a custom JSP tag that would take an array object and display the elements of the tag in an HTML table. Does anyone have suggestions on how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如 Phill 提到的,显示标签 taglib 对此非常有用,但实际上使用 JSTL 很容易做到:
根据您的需要,自定义 taglib 可能有点过头了。
As Phill mentioned, the Display Tag taglib is very good for this, but it's actually really easy to do using JSTL:
Depending on your needs, a custom taglib may be overkill.
您的意思是像 displayTag 之类的东西吗? 这可以从对象列表中形成表格。
Do you mean something like displayTag? That can form tables out of lists of objects.