Rails 3 - 一个主循环中有更多循环助手
早上好,伙计们,
我有一个大循环,其中还有另外 3 个循环。主循环使用cycle
来设置每行的背景颜色。在 3 个循环之一中也使用了 Cycle 帮助器 - 我得到了“错误”,因为这两个 Cycle 之间存在冲突。我用 each_with_index
解决了这种情况,但是 - 在这种情况下可以使用 cycle
助手吗?第二个周期
可能会分开一些东西吗?
Good morning guys,
I have one big loop, in that are 3 others. The main loop uses cycle
for set background color of every row. In one of 3 loops is cycle
helper used too -- and I got "error", because is conflict among these two cycle
s. I solved this situation with each_with_index
, but - is possible use in this situation cycle
helper? Is possible the second cycle
separate something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过命名它们在一个循环中包含多个循环:
You can have multiple cycles in one loop by naming them: