直接使用${属性名}即可。
后台在session中set值。
httpSession.setAttribute("source", source);
前台freemarker的ftl文件中取session的值:
<input type="hidden" <#if source??> value="${source}" </#if> name="source">
2023-11-18 09:18:40
直接使用${属性名}即可。
后台在session中set值。
httpSession.setAttribute("source", source);
前台freemarker的ftl文件中取session的值:
<input type="hidden" <#if source??> value="${source}" </#if> name="source">