3
最新
s := g.Server()
s.BindMiddlewareDefault(func(r *ghttp.Request) {
fmt.Println("cors")
r.Response.CORSDefault()
r.Middleware.Next()
})
在发送请求时,发现 OPTIONS 不能匹配到任务路由,直接返回 404
// 跨域请求成功,并且 go 打印了 cors
$.ajax('http://localhost:8010/api/captcha',{ method:'GET'})
// 请求失败 404,没有运行中间件
$.ajax('http://localhost:8010/api/captcha',{ method:'OPTIONS'})