页面使用el表达式报错
@JFinal 你好,想跟你请教个问题:我在页面用el表达式输出内容,为什么会报这个错误呀?已经引了freemarker的jar包了。
Error executing FreeMarker template
FreeMarker template error:
The following has evaluated to null or missing:
==> document [in template "document_list.jsp" at line 48, column 39]
Tip: If the failing expression is known to be legally null/missing, either specify a default value with myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthessis: (myOptionVar.foo)!myDefault, (myOptionVar.foo)??
The failing instruction (FTL stack trace):
----------
==> ${document.id} [in template "document_list.jsp" at line 48, column 37]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好的,解决了,谢谢波总
设置一下使用 freemarker 模板:
其实默认就是 freemarker不需要设置,只不过你给设置成了 JSP 而已:me.setViewType(ViewType.JSP);