egg cors 中间件手写
2020-04-21 本文已影响0人
kate2020
// 设置cors
module.exports = options => {
return async function corsFun(ctx, next) {
await next()
ctx.response.set('Access-Control-Allow-Origin', '*')
}
}
// 设置cors
module.exports = options => {
return async function corsFun(ctx, next) {
await next()
ctx.response.set('Access-Control-Allow-Origin', '*')
}
}