Access to XMLHttpRequest at 'http://*******' from origin 'http://localhost:8091' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: It does not have HTTP ok status.
<?phpnamespaceapp\common\behavior;usethink\Response;classCORS{publicfunctionappInit(){// Allow from any originif(isset($_SERVER['HTTP_ORIGIN'])){// Decide if the origin in $_SERVER['HTTP_ORIGIN'] is one// you want to allow, and if so:header("Access-Control-Allow-Origin: {$_SERVER['HTTP_ORIGIN']}");header('Access-Control-Allow-Credentials: true');header('Access-Control-Max-Age: 86400');// cache for 1 day}// Access-Control headers are received during OPTIONS requestsif($_SERVER['REQUEST_METHOD']=='OPTIONS'){if(isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_METHOD']))// may also be using PUT, PATCH, HEAD etcheader("Access-Control-Allow-Methods: GET, POST, OPTIONS");if(isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']))header("Access-Control-Allow-Headers: {$_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']}");exit(0);}}}
测试时使用了Google浏览器。
1.Courier New 2.monospace 3.Franklin Gothic Medium 4.Arial Narrow 5.Arial 6.sans-serif 7.Gill Sans MT 8.Calibri 9.Trebuchet MS 10.Lucida Sans 11.Lucida Grande 12.Lucida Sans Unicode 13.Geneva 14.Verdana 15.Segoe UI 16.Tahoma 17.…
5407. 管道 - AcWing题库 有一根长度为 len的横向的管道,该管道按照单位长度分为 len 段,每一段的中央有一个可开关的阀门和一个检测水流的传感器。 一开始管道是空的,位于 Li 的阀门会在 Si 时刻打开,并不断让水流入管道。…
cmd执行以下命令:
set GOARCHamd64
go env -w GOARCHamd64
set GOOSlinux
go env -w GOOSlinux然后go build [文件名],编译好的程序放到linux环境下
chmod 777 [文件名] 给权限,执行即可
再切换回windows
go env -w GOARCHamd64
go env -…