-
直接设置编码
return response()->json($data)->setEncodingOptions(JSON_UNESCAPED_UNICODE); -
中间件实现
参考 -
修改源码
// vendor/laravel/framework/src/illuminate/http/JsonResponse.php // 构造函数 $this->encodingOptions = JSON_UNESCAPED_UNICODE;
直接设置编码
return response()->json($data)->setEncodingOptions(JSON_UNESCAPED_UNICODE);
中间件实现
参考
修改源码
// vendor/laravel/framework/src/illuminate/http/JsonResponse.php
// 构造函数
$this->encodingOptions = JSON_UNESCAPED_UNICODE;

被折叠的 条评论
为什么被折叠?