當前位置: 首頁>>代碼示例>>Golang>>正文


Golang context.Context類代碼示例

本文整理匯總了Golang中github.com/bkand1909/song-getter/Godeps/_workspace/src/github.com/astaxie/beego/context.Context的典型用法代碼示例。如果您正苦於以下問題:Golang Context類的具體用法?Golang Context怎麽用?Golang Context使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Context類的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: Handler

// beego filter handler for serve captcha image
func (c *Captcha) Handler(ctx *context.Context) {
	var chars []byte

	id := path.Base(ctx.Request.RequestURI)
	if i := strings.Index(id, "."); i != -1 {
		id = id[:i]
	}

	key := c.key(id)

	if len(ctx.Input.Query("reload")) > 0 {
		chars = c.genRandChars()
		if err := c.store.Put(key, chars, c.Expiration); err != nil {
			ctx.Output.SetStatus(500)
			ctx.WriteString("captcha reload error")
			beego.Error("Reload Create Captcha Error:", err)
			return
		}
	} else {
		if v, ok := c.store.Get(key).([]byte); ok {
			chars = v
		} else {
			ctx.Output.SetStatus(404)
			ctx.WriteString("captcha not found")
			return
		}
	}

	img := NewImage(chars, c.StdWidth, c.StdHeight)
	if _, err := img.WriteTo(ctx.ResponseWriter); err != nil {
		beego.Error("Write Captcha Image Error:", err)
	}
}
開發者ID:psufighter,項目名稱:song-getter,代碼行數:34,代碼來源:captcha.go

示例2: exception

// show error string as simple text message.
// if error string is empty, show 500 error as default.
func exception(errcode string, ctx *context.Context) {
	code, err := strconv.Atoi(errcode)
	if err != nil {
		code = 503
	}
	if h, ok := ErrorMaps[errcode]; ok {
		executeError(h, ctx, code)
		return
	} else if h, ok := ErrorMaps["503"]; ok {
		executeError(h, ctx, code)
		return
	} else {
		ctx.ResponseWriter.WriteHeader(code)
		ctx.WriteString(errcode)
	}
}
開發者ID:psufighter,項目名稱:song-getter,代碼行數:18,代碼來源:error.go

示例3: beegoFinishRouter2

func beegoFinishRouter2(ctx *context.Context) {
	ctx.WriteString("|FinishRouter2")
}
開發者ID:psufighter,項目名稱:song-getter,代碼行數:3,代碼來源:router_test.go

示例4: beegoAfterExec2

func beegoAfterExec2(ctx *context.Context) {
	ctx.WriteString("|AfterExec2")
}
開發者ID:psufighter,項目名稱:song-getter,代碼行數:3,代碼來源:router_test.go

示例5: beegoBeforeExec2

func beegoBeforeExec2(ctx *context.Context) {
	ctx.WriteString("|BeforeExec2")
}
開發者ID:psufighter,項目名稱:song-getter,代碼行數:3,代碼來源:router_test.go

示例6: beegoBeforeRouter2

func beegoBeforeRouter2(ctx *context.Context) {
	ctx.WriteString("|BeforeRouter2")
}
開發者ID:psufighter,項目名稱:song-getter,代碼行數:3,代碼來源:router_test.go

示例7: beegoFilterFunc

func beegoFilterFunc(ctx *context.Context) {
	ctx.WriteString("hello")
}
開發者ID:psufighter,項目名稱:song-getter,代碼行數:3,代碼來源:router_test.go


注:本文中的github.com/bkand1909/song-getter/Godeps/_workspace/src/github.com/astaxie/beego/context.Context類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。