本文整理汇总了Golang中gas.Gas.FormValue方法的典型用法代码示例。如果您正苦于以下问题:Golang Gas.FormValue方法的具体用法?Golang Gas.FormValue怎么用?Golang Gas.FormValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gas.Gas
的用法示例。
在下文中一共展示了Gas.FormValue方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: 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)
}
}
示例2: NewPost
func NewPost(g *gas.Gas) {
switch g.Method {
case "GET":
g.Render("blog/newpost", nil)
case "POST":
now := time.Now().Format("2006-01-02 15:04:05-07")
_, err := QueryNewPost.Exec(now, g.FormValue("title"), g.FormValue("body"), g.FormValue("tag"))
if err != nil {
log.Print(err)
return
}
http.Redirect(g.ResponseWriter, g.Request, "/blog/", http.StatusFound)
}
}