本文整理匯總了Golang中gas.Gas.ErrorPage方法的典型用法代碼示例。如果您正苦於以下問題:Golang Gas.ErrorPage方法的具體用法?Golang Gas.ErrorPage怎麽用?Golang Gas.ErrorPage使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類gas.Gas
的用法示例。
在下文中一共展示了Gas.ErrorPage方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: getPosts
func getPosts(g *gas.Gas, postId interface{}) []*Post {
rows, err := QueryPage.Query(postId)
if err != nil {
g.ErrorPage(http.StatusServiceUnavailable)
panic(err)
}
posts := []*Post{}
for rows.Next() {
// TODO: better way to do this?
var (
id int64
stamp string
title string
body []byte
tag string
)
err = rows.Scan(&id, &stamp, &title, &body, &tag)
if err != nil {
g.ErrorPage(http.StatusServiceUnavailable)
}
timestamp, _ := time.Parse("2006-01-02 15:04:05-07", stamp)
posts = append(posts, &Post{id, timestamp, title, string(blackfriday.MarkdownCommon(body)), tag})
}
return posts
}
示例2: EditPost
func EditPost(g *gas.Gas, postId string) {
switch g.Method {
case "GET":
row := QuerySinglePost.QueryRow(postId)
var (
id int64
tag string
stamp, title string
body string
)
err := row.Scan(&id, &stamp, &title, &body, &tag)
if err != nil {
log.Printf("blog.EditPost(): %v", err)
g.ErrorPage(http.StatusServiceUnavailable)
}
timestamp, _ := time.Parse("2006-01-02 15:04:05-07", stamp)
g.Render("blog/editpost", &Post{id, timestamp, title, body, tag})
case "POST":
QueryEditPost.Exec(g.FormValue("body"), postId)
http.Redirect(g.ResponseWriter, g.Request, "/blog/", http.StatusFound)
}
}
示例3: Page
func Page(g *gas.Gas, page string) {
pageId, _ := strconv.Atoi(page)
posts := getPosts(g, pageId)
if len(posts) < 1 {
g.ErrorPage(http.StatusNotFound)
}
g.Render("blog/index", posts)
}
示例4: SinglePost
func SinglePost(g *gas.Gas, postId string) {
row := QuerySinglePost.QueryRow(postId)
var (
id int64
stamp string
title string
body []byte
tag string
)
err := row.Scan(&id, &stamp, &title, &body, &tag)
if err != nil {
log.Printf("blog.SinglePost(): %v", err)
g.ErrorPage(http.StatusServiceUnavailable)
}
timestamp, _ := time.Parse("2006-01-02 15:04:05-07", stamp)
g.Render("blog/onepost", &Post{id, timestamp, title, string(blackfriday.MarkdownCommon(body)), tag})
}