码迷,mamicode.com
首页 > 其他好文 > 详细

golang 如何使用模版?

时间:2018-05-28 16:14:55      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:实例化   address   tle   temp   如何   %s   package   \n   import   

package main

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

func main ()  {
    //实例化一个 HTTP
    app := http.NewServeMux();
    app.HandleFunc("/",func(w http.ResponseWriter,r *http.Request){
        switch r.Method {
        case "GET":
            tmpl,_ := template.ParseFiles("./View/home.html");
            tmpl.Execute(w,"Master");
        case "POST":
        case "PUT":
        case "DELETE":
        default:
        }
    });
    address := "127.0.0.1:80"
    fmt.Printf("Application: running using host(http://%s) \n",address);
    log.Fatal(http.ListenAndServe(address,app));
}

View/home.html

<html>
    <head>
        <title>Hello World!</title>
    </head>
    <body>
        <center>
            <h1>Hello,My name is {{.}}</h1>
        </center>
    </body>
</html>

golang 如何使用模版?

标签:实例化   address   tle   temp   如何   %s   package   \n   import   

原文地址:https://www.cnblogs.com/cheungxiongwei/p/9100326.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!