2023-09-13 06:08PM
在 app/views/articles/show.html.erb 文件中修改下面的代码:
<%= link_to '删除', @article, :method => :delete, style: 'margin-left: 910px; text-decoration: none;' %>
可以使用 data-confirm 属性,并且设置为 ‘确定要删除吗?'
<%= link_to '删除', @article, method: :delete, data: { confirm: '确定要删除吗?' } , style: 'margin-left: 910px; text-decoration: none;'%>
也可以使用 link_to
方法的 :onclick
选项,并将其设置为 'return confirm("是否要删除吗?");'
<%= link_to '删除', @article, method: :delete, onclick: 'return confirm("是否要删除吗?");', style: 'margin-left: 910px; text-decoration: none;' %>
登录
请登录后再发表评论。
评论列表:
目前还没有人发表评论