我提供下面的 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>
目录结构:
layout
log.html
twitter.go
白板的微信
相关分类