示例#1
0
文件: main.go 项目: Andals/gobox
func afterAction(context *controller.Context, args []string) {
	context.RespBody = misc.AppendBytes(context.RespBody, []byte("after "+args[0]+"\n"))

	context.TransData["after"] = "after"
}
示例#2
0
文件: main.go 项目: Andals/gobox
func regexAction(context *controller.Context, args []string) {
	context.RespBody = misc.AppendBytes(context.RespBody, []byte(" regex id = "+args[0]+" "))
}
示例#3
0
文件: main.go 项目: Andals/gobox
func beforeAction(context *controller.Context, args []string) {
	context.RespBody = []byte("exact before")
}
示例#4
0
文件: main.go 项目: Andals/gobox
func exactAction(context *controller.Context, args []string) {
	context.RespBody = misc.AppendBytes(context.RespBody, []byte(" exact "))
}
示例#5
0
文件: main.go 项目: Andals/gpm
func afterAction(context *controller.Context, args []string) {
	context.RespBody = misc.AppendBytes(context.RespBody, []byte("after\n"))
}