我正在使用像这样的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")
现在,如果我需要另一个包装器,我可以链接它。
我的问题:这个级别的处理程序链接是一个好方法还是有更好的/另一种方式来实现处理程序链接?