猿问

Go:错误服务 html 模板

我提供下面的 html 模板的方式有问题吗?页面上没有显示任何内容。


推特.go:


func loghandler(w http.ResponseWriter, r *http.Request) {

    t := template.Must(template.New("tele").ParseFiles("layout/log.html"))

    t.Execute(w, nil)

}

日志.html:


<html>

    <form action="/login" method="POST">

    <label for="name">Username</label>

    <input type="text" id="Username" name="name"></input>

    <button type="submit">Login</button>

    </form> 

</html>

目录结构:


twitter

     layout

          log.html

twitter.go


SMILET
浏览 174回答 2
2回答

白板的微信

使用像这样简单的东西:func loghandler(w http.ResponseWriter, r *http.Request) {&nbsp; &nbsp; t,_ := template.ParseFiles("layout/log.html")&nbsp; &nbsp; t.Execute(w, nil)}我已经试过了,它有效。
随时随地看视频慕课网APP

相关分类

Go
我要回答