package controllers
import (
. "logger"
"web"
)
//对象继承直接拥用REST标准接口
type login struct {
web.ControllerBase
}
func (this *login) Get() {
this.Template["key"] = "value"
this.WriteString("GET:", this.Template)
}
func (this *login) Post() {
this.WriteString("POST:", this.Template)
}
//对象不继承注册一个方法到路由
type signOut struct {
}
func (this *signOut) signOutGet(ctx *web.HttpContext) {
ctx.WriteString("signOutGet:", ctx.Template)
}
func (this *signOut) signOutPost(ctx *web.HttpContext) {
ctx.WriteString("signOutPost:", ctx.Template)
}
//函数直接注册路由
func IndexGet(ctx *web.HttpContext) {
ctx.WriteString("Index Get :", ctx.Template)
}
func IndexPost(ctx *web.HttpContext) {
ctx.WriteString("Index Post :", ctx.Template)
}
func PrintGet(ctx *web.HttpContext) {
ctx.WriteString(web.PrintRoute("%v<br>")) //打印数据路由状态
}
//action级别拦截器 包含GET POST PUT.....
func IndexActionFilter(ctx *web.HttpContext) {
ctx.WriteString("IndexActionFilter:", ctx.Template)
ctx.Next() //向下传递注册的路由
}
func GlobalFilter(ctx *web.HttpContext) {
ctx.WriteString("GlobalFilter:")
switch ctx.Params["next"] {
case "yes":
ctx.Next()
}
}
func init() {
web.BringInLog(Logger) //推入一个第三方中间件切换
//函数直接注册路由 ...
web.RegisterRoute("/index", IndexGet)
web.RegisterRoute("/index", IndexPost)
web.RegisterRoute("/print", PrintGet)
//对象匿名继承直接拥用REST标准接口
web.RegisterRoute("/login", &login{})
//对象不继承注册一个方法到路由
web.RegisterRoute("/signout", (&signOut{}).signOutGet)
//注册一个ACTION级别的拦截器
web.RegisterActionFilter("/index", IndexActionFilter)
//全局级别的拦截器
web.RegisterGlobalFilter(GlobalFilter)
}
有疑问加站长微信联系(非本文作者)