初学者です。コントローラのところでつまづいています。
コントローラ
def acceptednew
@post = Post.find_by(post_params)
@posted_id = @post.id
@accept = Accept.new (
user_id = @current_user,
post_id = @posted_id
)
@accept.save
redirect_to("/users/#{@current_user.id}")
end
で実行すると、
@accept = Accept.new (
のところで
When assigning attributes, you must pass a hash as an argument
というエラーがでます。
どのように直したらよいのか分らず進めずにいます。
どなたか、ご教授おねがいいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/15 05:00