[go]获取表单的方法

Posted Litter1996

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[go]获取表单的方法相关的知识,希望对你有一定的参考价值。

// object project main.go
package main

import (
    "html/template"
    "net/http"
)

func main() {
    http.HandleFunc("/", Hey)
    http.ListenAndServe(":8080", nil)
}

const tpl = `
    <html>
       <head>
          <title>表单传输</title>
       </head>
    <body>
    <form method="post">
        username:<input type="text" name="username"></p>
        password:<input type="password" name="password">
        <button type="submit">Submit</button>
    </form>   
    </body>
    </html>
`

func Hey(w http.ResponseWriter, r *http.Request) {
    if r.Method == "GET" {
               //获取模板文件
        t := template.New("hey")
               //解析模板文件
        t.Parse(tpl)
               //输出文件
        t.Execute(w, nil)
    } else {
        //将用户名和密码输出
        w.Write([]byte("用户名:" + r.FormValue("username")))
        w.Write([]byte("密码:" + r.FormValue("password")))
    }

}

 

以上是关于[go]获取表单的方法的主要内容,如果未能解决你的问题,请参考以下文章

常用python日期日志获取内容循环的代码片段

[Go] 通过 17 个简短代码片段,切底弄懂 channel 基础

《JavaScript高级程序设计》Chapter 14 表单脚本

解决go: go.mod file not found in current directory or any parent directory; see ‘go help modules‘(代码片段

你知道的Go切片扩容机制可能是错的

Go 系列教程 —— 17. 方法