<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
은 redBagCart로 기록되어 있는데, 로그에는 $request->input('type')
로 기록되어 있습니다. 🎜> ,널. ''
왜 이런 일이 일어나는 걸까요?
<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
은 redBagCart로 기록되어 있는데, 로그에는 HB
로 기록되어 있습니다. 🎜> ,널. $request->input('type')
왜 이런 일이 일어나는 걸까요? ''
Log::info('mylog', ['type'=>$request->input('type')]);
을 변수에 할당한 다음
을 사용해 보세요.