提问人:Antony M. Luz 提问时间:8/20/2021 更新时间:8/20/2021 访问量:126
为什么删除帖子按钮在使用脚手架构建的 rails 上的博客应用程序中无法正常工作?
Why is the delete post button not working correctly in a blog application built on rails using scaffold?
问:
由于某种原因,删除帖子按钮不是删除,而是将您带到文章页面,甚至不会触发警报消息。就好像读取按钮与删除按钮相同一样。
我尝试了两种方式,第一种:
<div class="card bg-light">
<div class="card-body">
<h4><%= link_to post.title, post %></h4>
<%= link_to "Read", post, class: 'btn btn-primary' %>
<%= link_to "Edit", edit_post_path(post), class: 'btn btn-secondary' %>
<%= link_to "Exclude", post, method: :delete, class: 'btn btn-danger', data: {confirm: 'Are you sure you want to delete?'} %>
</div>
</div>
第二个:
<div class="card bg-light">
<div class="card-body">
<h4><%= link_to post.title, post %></h4>
<%= link_to "Read", post, class: 'btn btn-primary' %>
<%= link_to "Edit", edit_post_path(post), class: 'btn btn-secondary' %>
<%= link_to "Exclude", post_path(post), method: :delete, class: 'btn btn-danger', data: {confirm: 'Are you sure you want to delete?'} %>
</div>
</div>
没有工作,删除按钮仍然失败,谁能帮我?
细节,我使用脚手架创建了应用程序的基础。
答: 暂无答案
评论
rails-ujs
DELETE