扫码下载编程狮APP
W3Cschool
恭喜您成为首批注册用户
获得88经验值奖励
若要获取上一次请求所保存的旧数据,可以在 Request 的实例上使用 old 方法。old 方法会从 session 取出之前被闪存的输入数据:
Request
old
$username = $request->old('username');Copy
$username = $request->old('username');
Laravel 也提供了全局辅助函数 old。如果你要在 Blade 模板 中显示旧的输入,使用 old 辅助函数将会更加方便。如果给定字段没有旧的输入,则会返回 null:
null
<input type="text" name="username" value="{{ old('username') }}">
更多建议:
扫描二维码
下载编程狮App
编程狮公众号
联系方式:
更多建议: