标签:程序开发 fatal 密码 htm userinfo 响应 text 参数 input
web编程func sayhelloName(w http.ResponseWriter,r *http.Request) {
r.ParseForm() //参数解析
fmt.Printf("r.Form:%v\n",r.Form)
fmt.Printf("Path:%v\n",r.URL.Path)
fmt.Printf("Schema:%v\n",r.URL.Scheme)
fmt.Printf("r.Form[url_long]:%v\n",r.Form["url_long"])
for k,v := range r.Form{
fmt.Printf("key=%v\n",k)
fmt.Printf("val=%v\n",strings.Join(v,""))
}
fmt.Fprintf(w,"hello")
}
func main() {
http.HandleFunc("/",sayhelloName)
err := http.ListenAndServe(":9090",nil)
if err != nil {
log.Fatal("ListenAndServer:",err)
}
}
通过<form></form>
扩起来的区域,允许用户提交数据
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login</title>
</head>
<body>
<form action="/login" method="POST">
<div>
<span>用户名:</span>
<input type="text" name="username">
</div>
<div>
<span>密码:</span>
<input type="text" name="password">
</div>
<div>
<input type="submit" value="登录">
</div>
</form>
</body>
</html>
func loginFunc(w http.ResponseWriter,r *http.Request) {
if r.Method == "GET" {
data,err := ioutil.ReadFile("./login.html")
if err != nil {
http.Redirect(w,r,"/404.html",http.StatusNotFound)
fmt.Errorf("read file faild:err:%v\n",err)
return
}
w.Write(data)
}else if r.Method == "POST" {
r.ParseForm()
username := r.FormValue("username")
password := r.FormValue("password")
if username == "admin" && password == "admin" {
fmt.Fprintf(w,"login success")
}else {
fmt.Fprintf(w,"username or password error")
}
}
}
func main() {
http.HandleFunc("/login",loginFunc)
err := http.ListenAndServe(":9090",nil)
if err != nil {
log.Fatal("ListenAndServer:",err)
}
}
{{}}
来包含需要在渲染时被替换的字段,{{.}}
表示当前对象{{.FieldName}}
来访问对象的属性var (
t *template.Template
)
type User struct {
Name string
Age int
}
func initTemplate() (err error){
//加载模板
t, err = template.ParseFiles("./index.html")
if err != nil {
fmt.Println("parse file error:",err)
return
}
return
}
func handleUserInfo(w http.ResponseWriter,r *http.Request) {
var user User = User{
Name: "wanghui",
Age: 20,
}
t.Execute(w,user)
}
func main() {
err := initTemplate()
if err != nil {
return
}
http.HandleFunc("/user/info",handleUserInfo)
err = http.ListenAndServe(":9090",nil)
if err != nil {
fmt.Errorf("http start error %v\n",err)
return
}
}
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login</title>
</head>
<body>
<form action="/login" method="POST">
<div>
<span>用户名:{{ .Name }}</span>
</div>
<div>
<span>年龄:{{ .Age }}</span>
</div>
</form>
</body>
</html>
<div>
<span>用户名:{{ .Name }}</span>
</div>
<div>
<span>年龄:{{ .Age }}</span>
</div>
<div>
{{ if gt .Age 18 }}
<p>Hello old man</p>
{{ else }}
<p>hello young man</p>
{{ end }}
</div>
为了简化结构体嵌套的问题
<body>
<form action="/login" method="POST">
<div>
<span>用户名:{{ .Name }}</span>
</div>
<div>
<span>年龄:{{ .Age }}</span>
</div>
{{with .Address}}
<div>
<span>省:{{.Province}}</span>
</div>
<div>
<span>城市:{{.City}}</span>
</div>
<div>
<span>邮编:{{.Code}}</span>
</div>
{{end}}
</form>
</body>
var (
t *template.Template
)
type Address struct {
Province string
City string
Code string
}
type User struct {
Name string
Age int
Address Address
}
func initTemplate() (err error){
//加载模板
t, err = template.ParseFiles("./index.html")
if err != nil {
fmt.Println("parse file error:",err)
return
}
return
}
func handleUserInfo(w http.ResponseWriter,r *http.Request) {
var user User = User{
Name: "wanghui",
Age: 20,
Address:Address{
Province: "gansu",
City: "zhangye",
Code: "734000",
},
}
t.Execute(w,user)
}
func main() {
err := initTemplate()
if err != nil {
return
}
http.HandleFunc("/user/info",handleUserInfo)
err = http.ListenAndServe(":9090",nil)
if err != nil {
fmt.Errorf("http start error %v\n",err)
return
}
}
<body>
<form action="/login" method="POST">
{{range .}}
<div>
<span>用户名:{{ .Name }}</span>
</div>
<div>
<span>年龄:{{ .Age }}</span>
</div>
{{with .Address}}
<div>
<span>省:{{.Province}}</span>
</div>
<div>
<span>城市:{{.City}}</span>
</div>
<div>
<span>邮编:{{.Code}}</span>
</div>
<hr>
{{end}}
{{end}}
</form>
</body>
package main
import (
"fmt"
"html/template"
"net/http"
)
var (
t *template.Template
)
type Address struct {
Province string
City string
Code string
}
type User struct {
Name string
Age int
Address Address
}
func initTemplate() (err error) {
//加载模板
t, err = template.ParseFiles("./index.html")
if err != nil {
fmt.Println("parse file error:", err)
return
}
return
}
func handleUserInfo(w http.ResponseWriter, r *http.Request) {
var users []*User
for i := 0; i < 15; i++ {
var user User = User{
Name: "wanghui",
Age: 20,
Address: Address{
Province: "gansu",
City: "zhangye",
Code: "734000",
},
}
users = append(users,&user)
}
t.Execute(w, users)
}
func main() {
err := initTemplate()
if err != nil {
return
}
http.HandleFunc("/user/info", handleUserInfo)
err = http.ListenAndServe(":9090", nil)
if err != nil {
fmt.Errorf("http start error %v\n", err)
return
}
}
标签:程序开发 fatal 密码 htm userinfo 响应 text 参数 input
原文地址:https://blog.51cto.com/13812615/2487653