Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请找到我需要在 dotcms 中完成的要求-
1)我需要为每个请求创建一个 Map 对象。2)跨不同的小部件或容器,我应该能够添加数据或从 Map 对象获取数据。
您能否为我提供一个解决方案或想法来满足要求。
提前致谢
您可以使用标准的 HTTPServletRequest 方法,甚至从速度:
$request.setAttribute("foo", "bar")
$request.getAttribute("foo") 将打印 "bar"
$request.getParameter("foo") 会得到一个 GET 或 POST 参数 "foo" 并且
#set($map = ${request.getParameterMap()}) 将获得整个地图。