今天我给大家带来一篇《从 HandlerFunc 返回错误 - 需要新类型》,本文主要会讲到等等知识点,希望大家一起学习进步,也欢迎大家关注、点赞、收藏、转发! 下面就一起来看看吧!
问题内容
现在我有这个:
type apperror struct{
status int
message string
}
func (h nearbyhandler) makeupdate(v nearbyinjection) Http.handlerfunc {
return func(w http.responsewriter, r *http.request) {
item, ok := v.nearby[params["id"]]
if !ok {
return apperror{
500, "missing item in map.",
}
}
}
}
问题是如果我这样做:
func (h NearbyHandler) makeUpdate(v NearbyInjection) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) AppError { // <<< return AppError
}
}
不会编译 b/c http.handlerfunc 不会返回返回 apperror 的函数。
我还有一个问题,如果我使用 apperror 作为返回值,如何避免显式返回 nil?
请注意,我收到此错误:
无法使用 func 文字(类型 func(http.responsewriter, *http.request) apperror) 作为返回参数中的 http.handlerfunc 类型
解决方案
因此,Go 的设计者没有返回请求的状态,而是给你 ResponseWriter。这是你与客户端的主要交互。例如,要设置状态代码,请执行 WriteHeader(500)。
到这里,我们也就讲完了《从 HandlerFunc 返回错误 - 需要新类型》的内容了。