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.

[Laravel6] よくあるエラー4つ

Last updated at Posted at 2022-05-26

注意!

以下の内容は必ずしも「このエラーが出たら、これをすれば解決します!」ということを保証しているわけではありません。
あくまで1つの参考としてお読みください。

SQLエラー「〇〇カラムはnullを許しません!」

  • nullってことはつまり、値が入っていないってこと(前提を確認することは大事)
  • まず dd($request) でDB通信の内容を確認する。
  • そしたら案の定、input の name属性の指定がタイポしていた、みたいなことがよくある

404

Routingを見直す

  1. php artisan route:list でroutingが正常に設定されているかを確認
  2. Apache設定の見直し
    1. 大体Documentroot
      💡 そもそものURL指定は間違ってない? localhost/フォルダ名/public/routing だよ!

バリデーション実装時の403エラー

  • Requestのauthorizeメソッドがfalseになってるからだと思うよ
    • false ⇒ trueで解決!

このRouteはPOSTをサポートしていません

  • Routingに記述されてあるものとformのaction指定の記述にズレがあった
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?