本文整理匯總了Golang中github.com/hraban/web.Context.Header方法的典型用法代碼示例。如果您正苦於以下問題:Golang Context.Header方法的具體用法?Golang Context.Header怎麽用?Golang Context.Header使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/hraban/web.Context
的用法示例。
在下文中一共展示了Context.Header方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: redirect
func redirect(ctx *web.Context, loc *url.URL) {
if _, ok := ctx.Params["noredirect"]; ok {
return
}
loc = ctx.Request.URL.ResolveReference(loc)
ctx.Header().Set("Location", loc.String())
ctx.WriteHeader(303)
fmt.Fprintf(ctx, "redirecting to %s", loc)
}
示例2: handleGetCmdInfo
func handleGetCmdInfo(ctx *web.Context, idstr string) error {
id, _ := liblush.ParseCmdId(idstr)
s := ctx.User.(*server)
c := s.session.GetCommand(id)
if c == nil {
return web.WebError{404, "no such command: " + idstr}
}
ctx.Header().Set("content-type", "application/json")
enc := json.NewEncoder(ctx)
var info = struct {
Started, Exited *time.Time
Error string `json:",omitempty"`
}{
Started: c.Status().Started(),
Exited: c.Status().Exited(),
}
if cerr := c.Status().Err(); cerr != nil {
info.Error = cerr.Error()
}
return enc.Encode(info)
}