login.html
複製代碼 代碼如下:
<html>
<head><title></title></head>
<body>
<form action="http://localhost:9090/login" method="post">
使用者名稱:<input type="text" name="username">
密 碼:<input type="text" name="password">
<input type="submit" value="登入">
</form>
</body>
</html>
main.go
複製代碼 代碼如下:
package main
import (
"fmt"
"html/template"
"log"
"net/http"
"strings"
)
func sayHelloName(w http.ResponseWriter, r *http.Request) {
// 解析url傳遞的參數
r.ParseForm()
//在服務端列印資訊
fmt.Println(r.Form)
fmt.Println("path", r.URL.Path)
fmt.Println("Scheme", r.URL.Scheme)
fmt.Println(r.Form["url_long"])
for k, v := range r.Form {
fmt.Println("key:", k)
// join() 方法用於把數組中的所有元素放入一個字串。
// 元素是通過指定的分隔字元進行分隔的
fmt.Println("val:", strings.Join(v, ""))
}
// 輸出到用戶端
fmt.Fprintf(w, "hello astaxie!")
}
func login(w http.ResponseWriter, r *http.Request) {
fmt.Println("method:", r.Method)
if r.Method == "GET" {
t, _ := template.ParseFiles("login.html")
// 執行解析模板
// func (t *Template) Execute(wr io.Writer, data interface{}) error {
t.Execute(w, nil)
} else {
r.ParseForm()
fmt.Println("username:", r.Form["username"])
fmt.Println("password:", r.Form["password"])
}
}
func main() {
//設定訪問路由
http.HandleFunc("/", sayHelloName)
http.HandleFunc("/login", login)
//設定監聽連接埠
err := http.ListenAndServe(":9090", nil)
if err != nil {
log.Fatal("ListenAndserve:", err)
}
}
以上所述就是本文的全部內容了,希望大家能夠喜歡。