// 设置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', '*')
}
}
本文标题:egg cors 中间件手写
本文链接:https://www.haomeiwen.com/subject/adcuihtx.html
网友评论