Lumen FatalErrorException in RedirectResponse.php line 75: Call to a member function flashInput() on null

前端 未结 1 1857
误落风尘
误落风尘 2020-12-21 22:35

Hi I got this errors in Lumen

FatalErrorException in RedirectResponse.php line 75: Call to a member function flashInput() on null

in Red

相关标签:
1条回答
  • 2020-12-21 23:13

    The error is happening because Lumen 5.2 does not support sessions. The withErrors() and withInput() methods attempt to set values on the session attribute on the redirector, but the session attribute is null.

    From the Lumen 5.2 documentation on validation:

    Lumen does not support sessions out of the box, so the $errors view variable that is available in every view in Laravel is not available in Lumen. The $this->validate helper will always return JSON responses with the relevant error messages when validation fails. If you are not building a stateless API that solely sends JSON responses, you should use the full Laravel framework.

    Basically, if you're trying to use sessions, you're trying to use Lumen 5.2 in a way it was not intended. You should either be using Lumen 5.1, or using the full Laravel framework. You can read the release notes here on the philosophy change for Lumen 5.2.

    0 讨论(0)
提交回复
热议问题