JellyBool

17773 经验值

5.4 的话,在 LoginController 中添加这个:

 public function username()
    {
        //return 'email';
        return 'username';
    }

就是代码写错了呗,你看看具体的 500 错误是什么报错信息

这个好像是要你自己设置一下 tab indent。。。

command shift a ,搜 tab and indents ,设置一下

这个视频貌似有点坑,我只是在某个地方看到过。并没有实际的解决方案和对应的经验

到你的 php.ini 配置文件里面,将 always_populate_raw_post_data 配置改为 -1.

然后代码中使用到 $data = $HTTP_RAW_POST_DATA 的地方改成 $data = file_get_contents('php://input');

你写成这样试试:

<textarea id="container" name="body" style="height: 200px">
                                    {!! old('body') !!}
</textarea >

或者
<textarea id="container" name="body" style="height: 200px" value=" {!! old('body') !!}">
                                   
</textarea >

纳尼。。你用 auth middleware 就好了吧。或者你使用 get 参数传递一个url ,就像 laravist 一样:

https://www.laravist.com/user/login?redirect_url=https://www.laravist.com/discussion/1561

图片就是个地址吧,你把 content 的内容通过 old() 方法取回来就好了吧