コード例 #1
0
ファイル: securecookie.go プロジェクト: xyproto/web
func root(ctx *web.Context) string {
	msg := form
	if said, ok := ctx.GetSecureCookie("said"); ok {
		msg = "You said " + said + "<p>" + msg
	}
	return msg
}
コード例 #2
0
ファイル: params.go プロジェクト: xyproto/web
func process(ctx *web.Context) string {
	ctx.ContentType("txt")
	return fmt.Sprintf("%#v", ctx.Params)
}
コード例 #3
0
ファイル: modules.go プロジェクト: skammer/web
// This function will be called prior to each web request
func AuthHandler(ctx *web.Context) error {
	ctx.User = "******"
	fmt.Println(ctx.Request.Header)
	return nil
}
コード例 #4
0
ファイル: handlersignatures.go プロジェクト: xyproto/web
func i(ctx *web.Context) {
	ctx.Write([]byte("<a href=j>non-nil error"))
}
コード例 #5
0
ファイル: securecookie.go プロジェクト: xyproto/web
func say(ctx *web.Context) {
	ctx.SetSecureCookie("said", ctx.Params["said"], 3600)
	ctx.Redirect(303, "/")
	return
}