app.use(cors({ "origin": true, //true 设置为 req.origin.url "methods": "GET,HEAD,PUT,PATCH,POST,DELETE", //容许跨域的请求方式 "allowedHeaders": "x-requested-with,Authorization,token, content-type", //跨域请求头 "preflightContinue": false, // 是否通过next() 传递options请求 给后续中间件 "maxAge": 1728000, //options预验结果缓存时间 20天 "credentials": true, //携带cookie跨域 "optionsSuccessStatus": 200 //options 请求返回状态码 }))