dotcms 中的请求变量
请找到我需要在 dotcms 中完成的要求 -
1)我需要为每个请求创建一个 Map 对象。 2)在不同的小部件或容器中,我应该能够添加数据或从 Map 对象获取数据。
您能给我提供一个解决方案或想法来满足要求吗?
提前致谢
Please find my requirement that needs to be done in dotcms-
1) I need to create a Map object for each request.
2) Across different widgets or containers i should be able to add data or get data from the Map object.
Can you please provide me a solution or idea to fulfill the requirement.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用标准的 HTTPServletRequest 方法,甚至从速度:
$request.setAttribute("foo", "bar")
$request.getAttribute("foo") 会打印 "bar"
$request.getParameter("foo") 会得到GET 或 POST 参数“foo”和
#set($map = ${request.getParameterMap()}) 将获取整个地图。
You can use the standard HTTPServletRequest methods, even from velocity:
$request.setAttribute("foo", "bar")
$request.getAttribute("foo") would print "bar"
$request.getParameter("foo") would get a GET or POST parameter "foo" and
#set($map = ${request.getParameterMap()}) would get the whole map.