在 Freemarker 中转储 .vars 中的所有值
我正在尝试转储我的 freemarker 模板可用的所有变量。我正在尝试使用类似的内容:
<#list .vars?keys as prop>
${prop} = ${.vars.get(prop)}
我在文档中读到 .vars 不支持按键功能,但是我使用上面的内容来展示我的内容试图做。
这是我使用 Freemarker 的第一天,所以任何建议都会很棒。
I'm attempting to dump all the variables available to my freemarker templates. I'm attempting to use something like:
<#list .vars?keys as prop>
${prop} = ${.vars.get(prop)}
</#list>
I read in the documentation that .vars doesn't support the keys functionality however I'm using the above to show what I'm trying to do.
This is my first day with Freemarker so any advice would be great.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您无法列出模板可用的所有变量。我知道您无法用Java列出它们。
FreeMarker 有很好的记录。查看FreeMarker 中的特殊变量部分。
如果有任何安慰的话,您可以访问局部变量,
其输出
I don't think you can list all the variables available to the template. I know you can't list them in Java.
FreeMarker is very well documented. Check out the part on special variables in FreeMarker.
If it's any consolation, you can access the local variables,
which outputs