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

Fix example for Hander func

This commit is contained in:
Vladimir Shteinman 2017-03-30 11:44:31 +03:00
parent 323a1c4214
commit fb04d3cff1

6
app.go
View File

@ -348,9 +348,9 @@ func Any(rootpath string, f FilterFunc) *App {
// Handler used to register a Handler router
// usage:
// beego.Handler("/api", func(ctx *context.Context){
// ctx.Output.Body("hello world")
// })
// beego.Handler("/api", http.HandlerFunc(func (w http.ResponseWriter, r *http.Request) {
// fmt.Fprintf(w, "Hello, %q", html.EscapeString(r.URL.Path))
// }))
func Handler(rootpath string, h http.Handler, options ...interface{}) *App {
BeeApp.Handlers.Handler(rootpath, h, options...)
return BeeApp