Skip to content

Instantly share code, notes, and snippets.

@yanhua365
Created December 20, 2013 08:02
Show Gist options
  • Save yanhua365/8051724 to your computer and use it in GitHub Desktop.
Save yanhua365/8051724 to your computer and use it in GitHub Desktop.
FreeMarker提示使用了空(null)变量,并提示了正确的使用方法。
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)??
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment