studentcontrtoller代码
if (Student::create($data)) {
return redirect('student/index')->with('success', '添加成功!');
} else {
return redirect()->back()->with('error', '添加失败!');;
}
if (Student::create($data)) {
return redirect('student/index')->with('success', '添加成功!');
} else {
return redirect()->back()->with('error', '添加失败!');;
}
2018-01-11
将路由的的中间键删掉 还是没有显示成功的消息
不删也不行
版本5.2.45
Route::group([],function (){
Route::get('student/index',['uses'=>'StudentController@index']);
Route::any('student/create',['uses'=>'StudentController@create']);
Route::any('student/save',['uses'=>'StudentController@save']);
});
不删也不行
版本5.2.45
Route::group([],function (){
Route::get('student/index',['uses'=>'StudentController@index']);
Route::any('student/create',['uses'=>'StudentController@create']);
Route::any('student/save',['uses'=>'StudentController@save']);
});
2018-01-11
使用中间件后 删掉session后还会出来,且flash,forget,pull均无效。
//使用中间件
/*Route::group(['middleware'=>['web']],function (){
Route::any('session1',['uses'=>'StudentController@session1']);
Route::any('session2',['uses'=>'StudentController@session2']);
});*/
去掉之后恢复正常。求解。
//使用中间件
/*Route::group(['middleware'=>['web']],function (){
Route::any('session1',['uses'=>'StudentController@session1']);
Route::any('session2',['uses'=>'StudentController@session2']);
});*/
去掉之后恢复正常。求解。
2017-12-21
关于以post提交,报报TokenMismatchException错误,
可以在表单中添加 :
<input type="hidden" name="_token" value="{{ csrf_token() }}"/>
或者在 中间件 VerifyCsrfToken 中的 $except 属性中添加 路由
protected $except = [
'student/save'
];
可以在表单中添加 :
<input type="hidden" name="_token" value="{{ csrf_token() }}"/>
或者在 中间件 VerifyCsrfToken 中的 $except 属性中添加 路由
protected $except = [
'student/save'
];
2017-12-13
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT '新增时间',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT '修改时间',
还是喜欢这种类型的直接int(11)查询数据库不能直接看到具体时间
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT '修改时间',
还是喜欢这种类型的直接int(11)查询数据库不能直接看到具体时间
2017-12-07