<code>public function postStore(Request $request){ switch ($request->input('type')) { //对提交过来的type进行判断 case 'redBagCart': $type=1; $order_type='HB'; break; default: $type=0; $order_type='WX'; break; } ... Log::info($request->input('type')); //记录到日志里 }) </code>
大概程式碼如上,可是奇怪的一點是,我資料庫有對這個$order_type
進行記錄,資料庫記錄的是HB
,也就是$request->input('type')
是redBagCart,可是日誌裡記錄的卻是''
,空。
為什麼會這樣。
<code>public function postStore(Request $request){ switch ($request->input('type')) { //对提交过来的type进行判断 case 'redBagCart': $type=1; $order_type='HB'; break; default: $type=0; $order_type='WX'; break; } ... Log::info($request->input('type')); //记录到日志里 }) </code>
大概程式碼如上,可是奇怪的一點是,我資料庫有對這個$order_type
進行記錄,資料庫記錄的是HB
,也就是$request->input('type')
是redBagCart,可是日誌裡記錄的卻是''
,空。
為什麼會這樣。
$data['provinceName']哪裡來的?Log::info('mylog', ['type'=>$request->input('type')]);
可以試試把$request->input('type')
賦值給一個變數再使用