dotcms 中的请求变量

发布于 2024-11-16 02:22:11 字数 144 浏览 2 评论 0原文

请找到我需要在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

╰つ倒转 2024-11-23 02:22:11

您可以使用标准的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文