如何以速度向动态(?)地图添加值?

发布于 2024-11-04 08:41:42 字数 474 浏览 0 评论 0原文

我有以下速度代码。

#foreach($content in $list)
   #set($map = {$content.categoryName:[]})

   #foreach($child in $children)
      // I want to add values to $map.$content.categoryName
   #end
#end

我想向 $map.$content.categoryName 添加值。我尝试过

$map.$content.categoryName.add(values here) 

,但没有成功。我也尝试过

$map[$content.categoryName].add(values here)

,但还是不行。有人可以帮我解决这个问题吗?

I have the following velocity code.

#foreach($content in $list)
   #set($map = {$content.categoryName:[]})

   #foreach($child in $children)
      // I want to add values to $map.$content.categoryName
   #end
#end

I would like to add values to $map.$content.categoryName. I tried

$map.$content.categoryName.add(values here) 

but it didn't work. I also tried

$map[$content.categoryName].add(values here)

But it still didn't work. Could someone please help me with this problem.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

写给空气的情书 2024-11-11 08:41:43

这是java,而不是javascript:

$map.get($content.categoryName).add($child.value)

It's java, not javascript:

$map.get($content.categoryName).add($child.value)

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