예제 #1
0
func next2(ctx *macaron.Context) {
	fmt.Println("位于处理器 2 中")

	ctx.Next()

	fmt.Println("退出处理器 2")
}
예제 #2
0
func next3(ctx *macaron.Context) {
	fmt.Println("位于处理器 3 中")

	ctx.Next()

	fmt.Println("退出处理器 3")
}
예제 #3
0
func next1(ctx *macaron.Context) {
	fmt.Println("位于处理器 1 中")

	ctx.Next()

	fmt.Println("退出处理器 1")
}