Вопрос

I have defined a variable in a FTL template using assign that I would like to be accessible after the template was processed via eg used context map.

How?

Это было полезно?

Решение

See in the FAQ: http://freemarker.org/docs/app_faq.html#faq_retrieve_calculated_values

Environment env = myTemplate.createProcessingEnvironment(root, out);
env.process();  // process the template
TemplateModel x = env.getVariable("x");
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top