老師的課程對(duì)我?guī)椭艽?,講的深入淺出,幾個(gè)小時(shí)的課程能教人入門一個(gè)框架,很精辟
2017-11-23
Route::group(['middleware' => 'web'], function () {
Route::any('session1',['uses'=>'StudentController@session1']);
Route::any('session2',['uses'=>'StudentController@session2']);
});
Route::any('student/response',['uses'=>'StudentController@response']);
無法通過response'重定向訪問session2
Route::any('session1',['uses'=>'StudentController@session1']);
Route::any('session2',['uses'=>'StudentController@session2']);
});
Route::any('student/response',['uses'=>'StudentController@response']);
無法通過response'重定向訪問session2
2017-11-22
使用中間件后路由無法訪問BadMethodCallException
Method get does not exist.
Method get does not exist.
2017-11-17
上學(xué)期學(xué)php的時(shí)候,原生代碼打的分頁,記得我痛苦死了,laravel就兩行代碼搞定?。?!炸了炸了!!
2017-11-15
{{csrf_field()}} 對(duì)就這個(gè)東西 加上就可以不報(bào)錯(cuò)了
2017-11-12
報(bào)TokenMismatchException錯(cuò)誤,要加一條input語句這條語句為<input type="hidden" name="_token" value="{{ csrf_token() }}"/>
2017-11-12
就算是用get傳了token參數(shù)一樣沒卵用 直接在地址框修改掉id值隨便刪數(shù)據(jù)
2017-11-10
科普一下:往Session內(nèi)存json數(shù)據(jù)
先準(zhǔn)備好Json數(shù)據(jù),轉(zhuǎn)換成數(shù)組就可以添加進(jìn)去了
Session::put(json_decode('{"a":1,"b":2,"c":3,"d":4,"e":5}',JSON_FORCE_OBJECT))
雖然這樣有點(diǎn)多此一舉的感覺,但有這個(gè)方法總比沒有的好吧……
先準(zhǔn)備好Json數(shù)據(jù),轉(zhuǎn)換成數(shù)組就可以添加進(jìn)去了
Session::put(json_decode('{"a":1,"b":2,"c":3,"d":4,"e":5}',JSON_FORCE_OBJECT))
雖然這樣有點(diǎn)多此一舉的感覺,但有這個(gè)方法總比沒有的好吧……
2017-11-09
回答自己那個(gè)關(guān)于樣式缺失的提問,是因?yàn)橄碌腂ootstrap版本太新了,有好多是缺失的。
2017-11-09