teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

2

コードの編集

2021/10/08 14:12

投稿

aomomo123
aomomo123

スコア19

title CHANGED
File without changes
body CHANGED
@@ -68,7 +68,7 @@
68
68
  posts_controller.rb
69
69
  ```
70
70
  class PostsController < ApplicationController
71
- before_action :ensure_user, only: [:edit, :update, :destroy, :set_parents, :get_category_children, :et_category_grandchildren]
71
+ before_action :ensure_user, only: [:edit, :update, :destroy]
72
72
  def create
73
73
  @post = Post.new(post_params)
74
74
  @post.user_id = current_user.id

1

実現したいことの追加

2021/10/08 14:12

投稿

aomomo123
aomomo123

スコア19

title CHANGED
File without changes
body CHANGED
@@ -1,6 +1,7 @@
1
1
  ### 前提・実現したいこと
2
2
 
3
3
  Railsでネットのコードを参考にしながらタグ機能を作っています。
4
+ 投稿一覧ページに投稿するときに選択したタグを表示したいのですが、エラーが発生しています。
4
5
 
5
6
  ### 発生している問題・エラーメッセージ
6
7