第五焱陽
Results
2
comments of
第五焱陽
将src/Controller.php中的server方法返回值做一下判断是否是IE浏览器进行修改 把 return response()->json($result, 200, [], JSON_UNESCAPED_UNICODE); 改为 if (strpos($_SERVER['HTTP_USER_AGENT'],"Triden")) { //如果是IE 特殊处理header return response($result,200)->header('Content-Type', 'text/html;charset=utf-8'); } else{ return response()->json($result, 200, [], JSON_UNESCAPED_UNICODE); }