正在从服务器偷取页面 . . .

http-template


<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Hello</title>
</head>
<body>
    <p>Hello {{.}}</p>
</body>
</html>
package main

import (
 "fmt"
 "html/template"
 "net/http"
)

// SayHello 定义函数
func SayHello(w http.ResponseWriter, r *http.Request) {
 // 解析模板
 t, err := template.ParseFiles("./hello.tmpl")
 if err != nil {
  fmt.Println("解析模板错误:", err)
  return
 }
 // 渲染模板
 err = t.Execute(w, "周靖")
 if err != nil {
  fmt.Println("渲染模板错误:", err)
  return
 }
}

func main() {
 http.HandleFunc("/", SayHello)
 err := http.ListenAndServe(":8000", nil)
 if err != nil {
  fmt.Println("Http Service Start Failed:", err)
  return
 }
}

文章作者: 周靖
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 周靖 !
📣 评论
  目录