ruby on rails link_to delete method not working

后端 未结 7 1492
挽巷
挽巷 2021-02-14 06:04

I am trying to delete a post using the code below:

<%= link_to \'Destroy\', post, :method => :delete, :onclick => \"return confirm(\'Are you sure you wa         


        
7条回答
  •  梦如初夏
    2021-02-14 06:31

    Have you included this line in your layout file?

    <%= javascript_include_tag "application" %>
    

提交回复
热议问题