LoginSignup
0
0

More than 3 years have passed since last update.

wrong argument type nil

Posted at

当方エンジニアを目指している身です
簡単ですがエラー共有として

railsでcrudアプリのような
質問ページなるものを作成している際にエラー

質問画面.png

質問を投稿し反映されたところまでよかったが、詳細ページを見ようとするとエラー
TypeError
wrong argument type error(expected String)

argument error.png

期待される値が無いだと…
検索してもいまいちピンとくる記事が見つからなかったが
よくよく考えると

【質問】を記入
【詳細】コメント書かずに動作を確認
そしてその後以下のようにmodels/question.rbにvaridatesを設定していたため
空欄入力に対してエラーと表示されていた

class Question < ApplicationRecord
    validates :title, presence: true
    validates :detail, presence: true

    has_many :solutions
end

結論
varidatesは先に書いとこ

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