Freemarker 相当于 >
您能告诉我 << 的 freemarker 等效标签是什么吗? tiles:insertAttribute name =“contentName”/> ?我已经尝试过 <@tiles.insertAttribute name="contentname" />它会抛出错误(如 freemarker.core.InvalidReferenceException:表达式图块未定义)。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须告诉 FreeMarker
tiles
是什么,例如通过从JspTaglibs
哈希中检索 Tiles 标签库。您可能想阅读FreeMarker 手册中有关 FreeMarker、servlet 和 taglib 的部分。You have to tell FreeMarker what
tiles
is, e.g. by retrieving the Tiles taglib from theJspTaglibs
hash. You probably want to read the section about FreeMarker, servlets and taglibs from the FreeMarker manual.从这个例子: http ://alvinalexander.com/java/jwarehouse/struts/src/apps/showcase/src/main/webapp/tiles/layout.ftl.shtml
from this example: http://alvinalexander.com/java/jwarehouse/struts/src/apps/showcase/src/main/webapp/tiles/layout.ftl.shtml