0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

記事に「いいね」機能③

Posted at

いいねを解除する機能

①config/routes.rb テーブルから削除すれば、いいねが解除できるのでは?
resource :like, only: [:create, :destroy]

destroy追加

②app/controllers/likes_controller.rb

  def destroy
    article =Article.find(params[:article_id])
    like = article.likes.find_by!(user_id: current_user.id)
    like.destroy!
    redirect_to article_path(article)
  end

③app/views/articles/show.html.haml

= link_to article_like_path(@article), data: { method: 'delete' } do

を追加
これで、削除機能が追加できました👏

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?