我想知道是否可以从backEnd API控制日志我的意思是来自移动应用程序的传入邮件请求。
我的控制器看起来像这样:
//Inspector writes notes
public function inspectorNotes(Request $request){
try{
//return response()->json($request->all());
error_log(print_r($request->all(), true));
die();
$note = new damageNotes();
$note->damageId = $request->damageid;
$note->inspectorId = Auth::user()->id;
$note->note = $request->note;
$note->images = $request->image;
$note->save();
return response()->json(['response'=>'Note has been saved']);
}catch (\Exception $e){
return response()->json(['response'=>$e->getMessage()]);
}
}
我使用error_log(print_r($ request-> all(),true));控制api但这只适用于我的机器,当我尝试来自其他设备的传入请求时,没有显示某些内容。 注意:我正在使用laravel框架。