优化跨域逻辑

master
yutent 2024-06-27 18:38:01 +08:00
parent 38c79587e2
commit 79ff113b6f
1 changed files with 5 additions and 1 deletions

View File

@ -13,9 +13,13 @@ export function createCors() {
if (opts.enabled) {
let origin = req.headers['origin'] || req.headers['referer'] || ''
let headers = req.headers['access-control-request-headers']
if (!origin) {
return next()
}
let { hostname, host, protocol } = parse(origin)
if (opts.origin.length && hostname) {
if (opts.origin.length) {
let pass = false
for (let it of opts.origin) {
if (hostname.endsWith(it)) {