1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-28 09:44:14 +00:00

Merge pull request #1309 from smallfish/develop

Update router.go, add Flush for responseWriter
This commit is contained in:
astaxie 2015-08-19 15:25:24 +08:00
commit 4081311a37

View File

@ -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 ""