go语言如何实现处理表单输入

爬山和爱情一样,爬得越高摔得越惨,同样,爱得越深,受伤的几率越大。人的一生全靠奋斗,唯有奋斗才能成功。让我们一起来奋斗吧!相信自己,我们会谱出一段美妙的音符,来唱出我们心中的那首歌!

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)
}
}

以上所述就是本文的全部内容了,希望大家能够喜欢。

本文go语言如何实现处理表单输入到此结束。生活中,一个真实的自我背负着一个假面的自我。现实中,一个简单的自我装载着一个复杂的自我。看戏,听戏,演戏。生活似乎主宰了一切,其实是表象背后的真实拿的主意。什么是真实?真实的背后,欲望才是主谋。不相信眼睛,不相信耳朵,唯有感知的心是对的,明白就好了。小编再次感谢大家对我们的支持!

您可能有感兴趣的文章
golang并发编程的如何实现

Go语言Telnet回音服务器的如何实现

自己动手用Golang如何实现约瑟夫环算法的示例

用go写的五子棋预测算法的如何实现

如何利用systemd部署golang项目的如何实现方法