Ruby/Rails-链接(完整元素)在视图*.erb中显示Edit Destroy Delete记录
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ruby/Rails-链接(完整元素)在视图*.erb中显示Edit Destroy Delete记录相关的知识,希望对你有一定的参考价值。
links (full <a href="#"> element) to Show Edit Destroy Delete records in view *.erbmust be in the record loop:
<% @colors.each do |color| %> <table> <tr> <td><%= link_to 'Show', color %></td> <td><%= link_to 'Edit', edit_color_path(color) %></td> <td><%= link_to 'Destroy', color, :confirm => 'Are you sure?', :method => :delete %></td> </tr> </table> <% end %>
以上是关于Ruby/Rails-链接(完整元素)在视图*.erb中显示Edit Destroy Delete记录的主要内容,如果未能解决你的问题,请参考以下文章
Ruby/Rails:将日期时间转换为自然语言(例如 2012 年 3 月 23 日到“本周五”)
ruby Rails - Rails中用于菜单链接的简单“活动”类
在 ruby rails html 视图中使用 Ajax 表单更改图标“like”按钮类
Ruby/Rails:您如何自定义 Devise 的邮件模板?