|
|
|
@ -30,7 +30,7 @@ class Log
|
|
|
|
// 在关联数组中添加 code 字段
|
|
|
|
// 在关联数组中添加 code 字段
|
|
|
|
// $data['code'] = 200;
|
|
|
|
// $data['code'] = 200;
|
|
|
|
$data['code'] = $response->getStatusCode();
|
|
|
|
$data['code'] = $response->getStatusCode();
|
|
|
|
$modifiedContent = json_encode($data); // 编码修改后的关联数组为 JSON 字符串
|
|
|
|
$modifiedContent = json_encode($data,JSON_UNESCAPED_UNICODE); // 编码修改后的关联数组为 JSON 字符串
|
|
|
|
$response->setContent($modifiedContent);
|
|
|
|
$response->setContent($modifiedContent);
|
|
|
|
|
|
|
|
|
|
|
|
if(env('REQUEST_LOG') and $response->getStatusCode()==200){ //如果返回状态为200进行log
|
|
|
|
if(env('REQUEST_LOG') and $response->getStatusCode()==200){ //如果返回状态为200进行log
|
|
|
|
|