一般普通請求這樣就可以
header("Access-Control-Allow-Origin: *"); // 指定允許的域名 header('Access-Control-Allow-Methods: *'); // 允許的 HTTP 方法
前端設定header設定"Content-Type": "application/json",”token":1111時: header("Access-Control-Allow-Origin: *"); // 指定允許的域名 header('Access-Control-Allow-Methods: *'); // 允許的 HTTP 方法 header('Access-Control-Allow-Headers: x-requested-with, content-type,token'); 以此類推
如果攜帶cookie是需要指定域名, header("Access-Control-Allow-Origin: localhost:3000"); // 指定允許的域名 header('Access-Control-Allow-Methods: *'); // 允許的 HTTP 方法 header('Access-Control-Allow-Credentials: true'); // 允許攜帶認證資訊 header('Access-Control-Allow-Headers: x-requested-with, content-type,token');