GO處理表單的輸入

來源:互聯網
上載者:User
 
package main
 
import (
    "fmt"
    "html/template"
    "log"
    "net/http"
    "strings"
)
 
func main() {
    http.HandleFunc("/", sayhello)   //設定訪問的路由
    http.HandleFunc("/login", login) //設定訪問的路由
 
    err := http.ListenAndServe(":9999", nil) //設定監聽地址和連接埠
 
    if err != nil {
        log.Fatal("ListenAndServe: ", err)
    }
}
 
func sayhello(w http.ResponseWriter, r *http.Request) { //用於輸出首頁面
    r.ParseForm()
    fmt.Println(r.Form)
    fmt.Println("path", r.URL.Path)
    fmt.Println("scheme", r.URL.Scheme)
    for k, v := range r.Form {
        fmt.Println("key:", k)
        fmt.Println("value:", strings.Join(v, ""))
    }
    fmt.Fprintf(w, "Hello Golang")
}
 
/*
該函數根據提交方法執行不同的操作。
如果提交方法是get,則向用戶端輸出登入頁面
如果提交方法是post,則擷取用戶端提交的表單內容
*/
func login(w http.ResponseWriter, r *http.Request) {
    fmt.Println("method :", r.Method)
    if r.Method == "GET" {
        t, _ := template.ParseFiles("login.html")
        t.Execute(w, nil)
    } else {
        r.ParseForm() //這裡的ParseForm方法調用是必須的,否則下面無法擷取表單內容
 
        //下面的代碼是對錶單內容的邏輯處理
        fmt.Println("username :", r.Form["username"])
        fmt.Println("password :", r.Form["password"])
    }
}
 
控制台直接運行:
 
 
使用IE進行訪問首頁面:
 
控制台輸出:
 
 
 
接著,使用IE訪問登入頁面:
 
 
控制台輸出:
 
 
輸入使用者名稱和密碼,點擊登入按鈕,將資料提交給後台進行邏輯處理:
 
 
控制台輸出:
 
 
後台將表單裡的使用者名稱和密碼進行了列印。
 
 
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.