投稿を削除しようとすると、次のようなエラーが表示され続けます
"Tech":String の未定義のメソッド `destroy'
投稿の「技術」の部分は、削除しようとしている投稿のタグによって異なります。何が問題なのかわかりません。acts_as_taggable_on
それが何か関係がある場合は使用しています。
これは、投稿コントローラーの destroy メソッドです。
def destroy
@post = Post.find(params[:id])
@post.destroy
respond_to do |format|
format.html { redirect_to(root_path) }
format.xml { head :ok }
format.json { head :ok }
end
end
私の投稿ショーの削除ボタン:
<%= button_to 'Delete', @post, :method => :delete, :confirm => "Are you sure?" %>
タグはデータベースに文字列として保存されます。