其他分享
首页 > 其他分享> > freemarker怎么获取session中的值?

freemarker怎么获取session中的值?

作者:互联网

直接使用${属性名}即可。

后台在session中set值。

httpSession.setAttribute("source", source);

前台freemarker的ftl文件中取session的值:

<input type="hidden"  <#if source??> value="${source}" </#if> name="source">

 

标签:set,freemarker,source,中取,获取,session,httpSession
来源: https://www.cnblogs.com/super-chao/p/15120249.html