Loading...
CORS代码解决方案namespace app\index\behavior; use think\Response; class CORS { public function run(&$dispatch) { $host_name = isset($_SERVER['HTTP_ORIGIN']) ? $_SE...