本文整理汇总了Golang中github.com/speedland/wcg.Response.IsClosed方法的典型用法代码示例。如果您正苦于以下问题:Golang Response.IsClosed方法的具体用法?Golang Response.IsClosed怎么用?Golang Response.IsClosed使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/speedland/wcg.Response
的用法示例。
在下文中一共展示了Response.IsClosed方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: _processRequest
func (p *Page) _processRequest(res *wcg.Response, req *wcg.Request) {
// instance of Page
pi := &Page{}
pi.App = p.App
pi.Title = p.Title
pi.Path = p.Path
pi.assetPath = p.assetPath
if p.templates != nil {
pi.templates = make([]string, len(p.templates))
for i := range p.templates {
pi.templates[i] = p.templates[i]
}
}
pi.Ogp("site_name", "SPEEDLAND Project")
// pre process to update page attributes
if p.handler != nil {
p.handler(res, req, pi)
if res.IsClosed() {
return
}
}
// automatically set ogp attributes if not set.
if _, ok := pi.ogp["title"]; !ok {
pi.Ogp("title", fmt.Sprintf("%s: %s", pi.App.Title, pi.Title))
}
if _, ok := pi.ogp["url"]; !ok {
pi.Ogp("url", wcg.AbsoluteUrl(req, req.URL().RequestURI()))
}
// set default OGP from app settings.
for k, v := range pi.App.DefaultOgp {
pi.Ogp(k, v)
}
res.SetLocal("Page", pi)
res.SetLocal("Ogp", pi.ogp)
res.SetLocal("Request", req)
res.SetLocal("TrackingCode", TrackingCode)
res.SetLocal("__JsBundle__", pi.GetAssetPath())
res.SetLocal("__APP_COMMIT", APP_COMMIT)
res.SetLocal("__APP_TIMESTAMP", APP_TIMESTAMP)
template_paths := []string{"./header.html", "./footer.html"}
res.Templates(append(pi.GetTemplates(), template_paths...)...)
}