mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 08:10:58 +00:00
Update router.go, add Flush for responseWriter
This commit is contained in:
parent
9107fd8898
commit
506f54a080
@ -931,6 +931,13 @@ func (w *responseWriter) Hijack() (net.Conn, *bufio.ReadWriter, error) {
|
||||
return hj.Hijack()
|
||||
}
|
||||
|
||||
func (w *responseWriter) Flush() {
|
||||
f, ok := w.writer.(http.Flusher)
|
||||
if ok {
|
||||
f.Flush()
|
||||
}
|
||||
}
|
||||
|
||||
func tourl(params map[string]string) string {
|
||||
if len(params) == 0 {
|
||||
return ""
|
||||
|
Loading…
Reference in New Issue
Block a user