我使用assign
在FTL模板中定义了一个变量,我想在模板处理后通过例如使用的上下文映射来访问。
如何?
答案 0 :(得分:1)
请参阅常见问题解答: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");