如何创建一个助手来获取标签并将其放入 Rails 3 中的链接中?
我正在使用acts_as_taggable_on,每次我想显示标签时,我都会使用以下内容:
7 #tags
8 %label Tags:
9 - @vendor.tags.each do |tag|
10 = link_to tag.name, tag_path(tag.name)
我有不同的模型,所有模型都有标签,所以理想情况下,我将资源传递给一个助手......思考某事< /em> 与使用 content_tag 和块有关......?
I am using acts_as_taggable_on, and everytime I want to display tags, I use the following:
7 #tags
8 %label Tags:
9 - @vendor.tags.each do |tag|
10 = link_to tag.name, tag_path(tag.name)
I have different models that all have tags, so ideally it would be a single helper that I pass the resource to...thinking something to do with using content_tag and a block....?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建一个助手来显示标签。
You can create a helper to display tags.