Velocity - 将当前的 forloop 变量传递给另一个模板
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Velocity 已经提供了一种通过 $velocityCount 获取循环计数的方法。
试试这个:
outerTemplate.vm:
innerTemplate:
Velocity already provides a way to get the loop count through $velocityCount.
Try this:
outerTemplate.vm:
innerTemplate: