JSP 标签递归
我正在为我的一个实践项目实现一个树标记,其中我将以树的形式(递归地)显示目录的内容。 在 JSP2.0 之前的日子里,我已经在 Java 中实现了类似的自定义标记需求。 处理目录需要递归(处理子目录)! 是否可以将其编码为标记文件并且可以以递归方式使用它们?
I am implementing a tree tag for one of my practice projects, where I would display the contents of a directory in the form of a tree (recursively). I had implemented a similar requirement as a Custom Tag in Java during the pre-JSP2.0 days.
Handling a directory needs recursion (to handle the subdirectories)! Is it possible to code this as tag files and can they be used in a recursive manner?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个递归标记文件的示例,它从节点递归地显示其所有子节点(用于生成 YUI treeview):
/WEB-INF/tags/nodeTree.tag:
这可以在常规 JSP 文件中使用,如下所示:
Here is an example of an recursive tag file that displays from a node all it's children recursivly (used to generate a YUI treeview):
/WEB-INF/tags/nodeTree.tag:
This can be used in a regular JSP file like this: