-
// 使用模型提交成功失败提示信息,在redirect()->with('success','message'),需要用到session的flush,需要使用中间件,在表单中需要添加{{csrf_field}}查看全部
-
// 设置允许模型批量提交 protected $fillable = ['name', 'age', 'sex']; Student::create([]);查看全部
-
// 设置返回时间格式,不做处理 protected function asDateTime($val) { return $val }查看全部
-
// 修改默认时间返回格式为时间戳 protected function getDateFormat() { return time() }查看全部
-
设置返回时间格式: 1、模型中设置 public $timestamps = true;查看全部
-
表单验证查看全部
-
重定向上一个页面redirect()->back() 输出错误信息 ->withErrors($validator) 数据保持 ->withInput();//默认传递$validator 前端页面取值 value="{{ old('student')['name'] }}"查看全部
-
laravvel: 1.controller =>request 获取请求的值 public function request1(Request $request){ $request->input('name','默认'); } 2.dd();将结果打印出来 二 判断请求类型 1.if($request->isMethod('POST')){ echo 'yes'; }else{ echo 'no'; }查看全部
-
1:Laravel中的**Request**请求 >查看url是否拥有某个参数 ``` $request->has('paramter'); ``` >查看所有的request请求数据 ``` $request->all(); ``` >判断请求类型 ``` $request->method(); //获取请求的方法 $request->isMethod('get'); //判断是否是get请求 $request->isMethod('post'); //判断是否是post请求 $request->ajax(); //判断是否是ajax请求 ``` >判断是否是属于某个控制器 ``` $request->is('second/*'); ``` >查看当前的URL路径 ``` $request->url() ```查看全部
-
validator类验证查看全部
-
控制器验证查看全部
-
哈哈查看全部
-
佰港城哦弄查看全部
-
好很多很多都好都好查看全部
举报
0/150
提交
取消