You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have freemarker template with getter-functions like ${jsonObject.getCreatedAt()} but it seems like not visible in Freemarker.
This is the error i get: Error: the string ">>> ABORTED! <<<\n\nThe cause of aborting was: \nFreeMarker template error: The following has evaluated to null or missing:\n==> jsonObj.getCreatedAt [in template \"__testMail.ftl\" at line 8, column 7]\n\n----\nTip: It's the step after the last dot that caused this error, not those before it.\n----\nTip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like 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 parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??\n----\n\n----\nFTL stack trace (\"~\" means nesting-related):\n\t
Is there a way to access those functions?
The text was updated successfully, but these errors were encountered:
I have freemarker template with getter-functions like ${jsonObject.getCreatedAt()} but it seems like not visible in Freemarker.
This is the error i get:
Error: the string ">>> ABORTED! <<<\n\nThe cause of aborting was: \nFreeMarker template error: The following has evaluated to null or missing:\n==> jsonObj.getCreatedAt [in template \"__testMail.ftl\" at line 8, column 7]\n\n----\nTip: It's the step after the last dot that caused this error, not those before it.\n----\nTip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like 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 parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??\n----\n\n----\nFTL stack trace (\"~\" means nesting-related):\n\t
Is there a way to access those functions?
The text was updated successfully, but these errors were encountered: