建议不熟悉 中间件 的来看一下这里的资料学习一下
https://laravel-china.org/topics/687
讲师似乎忘了给讲这个东西了,在这节课程里刚开始就操作中间件可能会把人搞得一头雾水...
https://laravel-china.org/topics/687
讲师似乎忘了给讲这个东西了,在这节课程里刚开始就操作中间件可能会把人搞得一头雾水...
2017-01-06
在StudentController.php 里加上 use Session; 就可以解决Class 'App\Http\Controllers\Session' not found的问题了,亲测有效!
2017-01-05
To use the class from the global namespace, place:
use Session;
on top of your controller, after your namespace declaration
Alternatively, you can call the class from the global namespace with:
\Session::get('panier');
use Session;
on top of your controller, after your namespace declaration
Alternatively, you can call the class from the global namespace with:
\Session::get('panier');
2017-01-05
这么写可以达到同样效果,为什么要写uses呢?
Route::any('session5','HomeController@session1');
Route::any('session6','HomeController@session2');
Route::any('session5','HomeController@session1');
Route::any('session6','HomeController@session2');
2016-12-26
5.2版本可以这样
Route::get('home', function () {
// 从session中获取数据...
$value = session('key');
// 存储数据到session...
session(['key' => 'value']);
});
Route::get('home', function () {
// 从session中获取数据...
$value = session('key');
// 存储数据到session...
session(['key' => 'value']);
});
2016-12-26
老师讲的很好,之前自己一直看文档,学的不多,现在用这么短时间的,就可以讲清楚这么多东西。 不过自己还要在多去做练习 才能熟练
2016-12-24