最新回答 / 慕莱坞1086289
修改的路由会携带一个id参数,你要根据这个id获取Model,由于form是跟增加使用的一个,所以在input中的value在赋值时需要增加isset判断,然后提交。之所以提交没改变,其根本就是你没拿到id对应的Model,少这一步,希望对你有帮助。。
2017-04-12
Type error: Argument 1 passed to Illuminate\Http\RedirectResponse::withInput() must be of the type array, object given, called in D:\phpStudy\WWW\laravel\app\Http\Controllers\StudentController.php,报这个错误可以在控制器这样写return redirect()->back()->withErrors($validator)->withInput($request->input());
2017-04-08
Type error: Argument 1 passed to Illuminate\Http\RedirectResponse::withInput() must be of the type array, object given, called in D:\phpStudy\WWW\laravel\app\Http\Controllers\StudentController.php on line 62
求解,求解
求解,求解
2017-04-08
<input type="text" name="Student[age]"
value="{{ isset($student->age) ? $student->age : old('Student')['age'] }}"
class="form-control" id="age" placeholder="请输入学生年龄">
value="{{ isset($student->age) ? $student->age : old('Student')['age'] }}"
class="form-control" id="age" placeholder="请输入学生年龄">
2017-04-03
<input type="radio" name="Student[sex]" value="20"
@if(isset($student->sex) && $student->sex == 20)
checked=""
@else
''
@endif
> 女
@if(isset($student->sex) && $student->sex == 20)
checked=""
@else
''
@endif
> 女
2017-04-03
最赞回答 / weixia
laravel 5.4 也遇到这个问题 ,找到最后发现是 中间件 文件kernel.php。的 protected $middlewareGroups = [】// \App\Http\Middleware\VerifyCsrfToken::class, 这个 中间件 注释掉。就可以了!
2017-04-02
最赞回答 / 就不告诉你啦
这个是因为laravel默认开启了Csrf验证,只需要在代码form中添加一个隐藏的input即可,添加代码如下<...code...>你可以试试,一定要添加在form标签内部。<...图片...>
2017-04-02
TokenMismatchException in VerifyCsrfToken.php line 67:
大神们,我实在解决不了了
大神们,我实在解决不了了
2017-04-02
如果遇到pull forget flash 失效的时候,看看是不是用dd输出 ,概要var_dump,echo,print_r输出;
2017-04-02