AnA*_*ice 15 ruby-on-rails ruby-on-rails-3
我有一个嵌套的资源附件,我想创建一个link_to销毁/删除附件.这就是我所拥有的,但它是作为GET而不是PUT发布的:
<%= link_to "Delete Attachment", project_thread_attachment_path(@attachment.thread.project.id, @attachment.thread.id, @attachment.id), :confirm => "Are you sure you want to delete this attachment?", :method => :delete, :action => "destroy" %>
Run Code Online (Sandbox Code Playgroud)
想法?谢谢!
Ger*_*rry 16
尝试
link_to "Delete Attachment", [@attachment.thread.project,@attachment.thread,@attachment], :confirm => "Are you sure?", :method => :delete
Run Code Online (Sandbox Code Playgroud)
它有用吗?
您应该能够自己使用以下内容(删除:action =>'destroy'部分).此外,请求应该是DELETE请求,而不是PUT请求:
<%= link_to "Delete Attachment", project_thread_attachment_path(@attachment.thread.project.id, @attachment.thread.id, @attachment.id), :confirm => "Are you sure you want to delete this attachment?", :method => :delete %>