私はRORを初めて使用します。データベースからファイルを削除できるアクションを作成しようとしています。同じコードを書きましたが、URLにエラーが発生しました。削除アクションのビュー:-
= link_to raw('<span>Delete</span>'), :method=> :delete, destroy_attachment_path(attachment.descendants.last),
:data => { :confirm => 'Are you sure? This will permanently delete this file!' },
:remote => true,
:class => 'deleteShow deleteFile'
同じためのコントローラ:-
enter code here
def destroy
@attachment = Attachment.find(params[:id])
@attachment.destroy
respond_to do |format|
format.html { redirect_to attachments_url }
format.json { head :no_content }
end
end
このコードを実行しようとすると、無効なメソッド Destroy_attachment パスのようにエラーが表示されます。誰でも問題を解決するのを手伝ってもらえますか? 前もって感謝します。