Velocity - 将当前的 forloop 变量传递给另一个模板

发布于 2024-12-10 03:53:43 字数 387 浏览 0 评论 0原文

我有一个 Velocity 模板,在其中使用 for 循环并在其中执行解析语句。问题是 parse 语句需要访问 for 循环中的当前对象,但它似乎超出了范围。在这里搜索后,我尝试了一个建议来创建一个变量并将迭代中的当前变量分配给它,但它仅适用于第一次迭代。所有后续迭代都包含对迭代中第一个对象的引用。一个例子:

  #foreach ($someObject in $MyList)
       #set($anotherObject=$someObject)
       #parse('innerTemplate.vm')
  #end

问题是innerTemplate.vm永远不会看到$someObject,所以如果我使用set构造将它分配给另一个变量,它只记住列表中的第一项。

I have a Velocity template where I am using a for loop and within it, executing a parse statement. The problem is the parse statement needs access to the current object in the for loop but it seems to go out of scope. Having searched on here, I tried one suggestion to create a variable and assign the current variable in the iteration to it, but it only works for the first iteration. All subsequent iterations contain a reference to the first object in the iteration. An example:

  #foreach ($someObject in $MyList)
       #set($anotherObject=$someObject)
       #parse('innerTemplate.vm')
  #end

The problem is innerTemplate.vm never sees $someObject, so if I assign it to another variable using the set construct, it only remembers the first item in the list.

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

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

发布评论

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

评论(1

迷离° 2024-12-17 03:53:43

Velocity 已经提供了一种通过 $velocityCount 获取循环计数的方法。

试试这个:

outerTemplate.vm:

#foreach ($someObject in $MyList)
   #parse('innerTemplate.vm')
#end

innerTemplate:

$velocityCount

Velocity already provides a way to get the loop count through $velocityCount.

Try this:

outerTemplate.vm:

#foreach ($someObject in $MyList)
   #parse('innerTemplate.vm')
#end

innerTemplate:

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