Ruby on Rails 循环
我想在 Rails 中创建以下循环:
If value<=5
display image1.gif value.times && display image2.gif (5-value).times
我试图将其添加到我的视图中,但是有没有办法可以将其转换为方法?如果我将其设为辅助方法,我将如何放置图像标签?
预先感谢您的任何帮助。
I want to create the following loop in rails:
If value<=5
display image1.gif value.times && display image2.gif (5-value).times
I was trying to add this to my View, but is there a way I can convert it into a method? How would I put the image tags if I where to make it a helper method?
Thanks in advance for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果我理解你在寻找什么,这应该可行。
将其放入辅助文件中:
然后从您的视图中调用它,如下所示:
This should work if I'm understanding what you're looking for.
Put this in a helper file:
Then call it from your view like like:
(适用于星级评定系统)
让它像这样工作:
(For star rating system)
Got it working like this: