golang http处理程序包装/链接

时间:2017-06-15 00:25:13

标签: go handler

我正在使用像这样的golang http处理程序

router := mux.NewRouter()

wrapper1(h http.Handle, ip1 string)    
wrapper2(h http.Handler, ip2 string)    
wrapper3(h http.Handler, ip3 string)    
wrapper4(h http.Handler, ip4 string)    
wrapper5(h http.Handler, ip5 string)

router.Handle("/route1", wrapper5(wrapper4(wrapper3(wrapper2(wrapper3, 
    "input1"), "input2"), "input3"), "input4"), "input5")

现在,如果我需要另一个包装器,我可以链接它。

我的问题:这个级别的处理程序链接是一个好方法还是有更好的/另一种方式来实现处理程序链接?

1 个答案:

答案 0 :(得分:0)

这是一个小库,可以帮助您链接处理程序:Alice