card = Card.where(user_id: current_user.id).first
redirect_to action: "show" if card.exists?
これをfind_byを使って
card = Card.find_by(user_id: current_user.id) redirect_to action: "show" if card.exists?
に書き直したのですがNoMethodError at /card/new undefined method `exists?' for nil:NilClass
と出てしまったのですが、どうすれば解決できるのでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/22 05:08