美文网首页
grails拦截跨域访问请求

grails拦截跨域访问请求

作者: 静静黑夜 | 来源:发表于2017-07-03 11:39 被阅读0次

class ApiInterceptor {

boolean before() {

    println "before::::=================="

    header( "Access-Control-Allow-Origin","*")// 这里的*注意一下允许所有人调用"http://local.test" )

    header( "Access-Control-Allow-Credentials", "true" )

    header( "Access-Control-Allow-Methods", "POST, GET, OPTIONS, DELETE" )

    header( "Access-Control-Max-Age", "3600" )

    true

}

boolean after() { 

    true

 }

void afterView() {

    // no-op

}

}


相关文章

网友评论

      本文标题:grails拦截跨域访问请求

      本文链接:https://www.haomeiwen.com/subject/rgpacxtx.html