为了账号安全,请及时绑定邮箱和手机立即绑定

用于 http ResponseWriter 的 CloseNotifier

用于 http ResponseWriter 的 CloseNotifier

Go
慕斯王 2021-11-08 16:07:25
我正在使用 go 1.4.2 并且实现似乎没有,CloseNotifier因为我想在长轮询处理程序中使用它,例如:func Pollhandler(w http.ResponseWriter, r *http.Request) {    notify := w.(CloseNotifier).CloseNotify()    <-notify //should block until the http connection is closed}没有为 http 实现 CloseNotifierResponseWriter吗?如果是这样,我该如何解决这个问题?或者是否有任何实现接口的httpResponseWriter实现CloseNotifier?
查看完整描述

1 回答

?
隔江千里

TA贡献1906条经验 获得超10个赞

http.CloseNotifierGo 1.1以来一直存在。您的代码不起作用,因为您忘记了包部分:

notify := w.(http.CloseNotifier).CloseNotify()


查看完整回答
反对 回复 2021-11-08
  • 1 回答
  • 0 关注
  • 281 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信