2.渲染浏览器
最后更新于:2022-04-02 04:46:35
模板渲染浏览器输出
(index.html同模板渲染终端index.html保持不变)
~~~
package main
import (
"fmt"
"html/template"
// "io"
"net/http"
)
var myTemplate *template.Template
type Person struct {
Name string
age string
}
func userInfo(w http.ResponseWriter,r *http.Request) {
p := Person{Name:"Murphy",age:"28"}
myTemplate.Execute(w,p)
}
func initTemplate(fileName string) (err error){
myTemplate,err = template.ParseFiles(fileName)
if err != nil{
fmt.Println("parse file err:",err)
return
}
return
}
/*
func HandleFunc(pattern string, handler func(ResponseWriter, *Request)) {
DefaultServeMux.HandleFunc(pattern, handler)
}
*/
func main() {
initTemplate("./index.html")
http.HandleFunc("/user/info", userInfo)
err := http.ListenAndServe("0.0.0.0:8880", nil)
if err != nil {
fmt.Println("http listen failed")
}
}
~~~
命令行:
$ go run main.go
然后在浏览器中输入 :
http://localhost:8880/user/info
页面显示:
hello,Murphy {Murphy 28}
';