首页 > Web开发 > 详细

Beego-自建Http中间件

时间:2018-09-02 23:08:25      阅读:852      评论:0      收藏:0      [点我收藏+]

1. 自建Http中间件

1.以类型的形式

type SingleHost struct{

  handler http.Handler

  allowedHost string

}

func (this *SingleHost)ServerHTTP(w http.ResponseWriter,r *http.Request){

  if r.host == this.allowedHost {

   this.handler.ServerHTTP(w,r)

  } else{

    w.WriteHeader(403)

}

}

func myHandler (w http.ResponseWriter,r *http.Request){

  w.Write([]byte(“Hello world”))

}

func main(){

  single := &SingleHost{

   handler : http.HandlerFunc(myHandler),

  allowedHost : ”localhost:8080”

}

http.ListenAndServe(“:8080”,single)

}

2. 以函数的形式

func SingleHost (handler http.Handler,allowHost string){

   fn:= func(w http.ResponseWriter,r *http.Request){

   if r.host == allowedHost {

      handler.ServerHTTP(w,r)

  } else{

    w.WriteHeader(403)

   }

  }

return http.HandlerFunc(fn)

}

【说明】: 内容来自无闻的go-web讲解,尊重原版,感谢作者!   Go编程基础

Beego-自建Http中间件

原文:https://www.cnblogs.com/tomtellyou/p/9575656.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!