请教一个模板问题!

Xwenxuan · · 826 次点击 · 开始浏览    置顶
这是一个创建于 的主题,其中的信息可能已经有所发展或是发生改变。

为什么parseFiles总是报错 以下为代码 及报错 ```go func login(w http.ResponseWriter,r *http.Request) { fmt.Println("method",r.Method)//看是get还是post if r.Method == "GET" { t,_ := template.ParseFiles("login.html") log.Println(t.Execute(w,nil)) } else { r.ParseForm() fmt.Println("username",r.Form["username"]) fmt.Println("password",r.Form["password"]) } } ``` 错误信息 ``` 2018/03/18 22:32:42 http: panic serving [::1]:51132: runtime error: invalid memory address or nil pointer dereference goroutine 18 [running]: net/http.(*conn).serve.func1(0xc042058dc0) D:/Go/src/net/http/server.go:1726 +0x122 panic(0x8329e0, 0xa5eb50) D:/Go/src/runtime/panic.go:505 +0x258 html/template.(*Template).escape(0x0, 0x0, 0x0) D:/Go/src/html/template/template.go:95 +0x49 html/template.(*Template).Execute(0x0, 0x8ca900, 0xc04215c000, 0x852fe0, 0xc0421381b0, 0x0, 0x0) D:/Go/src/html/template/template.go:119 +0x41 main.login(0x8cd3c0, 0xc04215c000, 0xc042144000) D:/go_workspace/webProject/src/main.go:37 +0x369 net/http.HandlerFunc.ServeHTTP(0x8acd50, 0x8cd3c0, 0xc04215c000, 0xc042144000) D:/Go/src/net/http/server.go:1947 +0x4b net/http.(*ServeMux).ServeHTTP(0xa6d8c0, 0x8cd3c0, 0xc04215c000, 0xc042144000) D:/Go/src/net/http/server.go:2337 +0x1aa net/http.serverHandler.ServeHTTP(0xc042064dd0, 0x8cd3c0, 0xc04215c000, 0xc042144000) D:/Go/src/net/http/server.go:2694 +0x1eb net/http.(*conn).serve(0xc042058dc0, 0x8cd580, 0xc0420160c0) D:/Go/src/net/http/server.go:1830 +0x11f9 created by net/http.(*Server).Serve D:/Go/src/net/http/server.go:2795 +0x6eb 2018/03/18 22:32:42 http: panic serving [::1]:51133: runtime error: invalid memory address or nil pointer dereference goroutine 19 [running]: net/http.(*conn).serve.func1(0xc042058e60) D:/Go/src/net/http/server.go:1726 +0x122 panic(0x8329e0, 0xa5eb50) D:/Go/src/runtime/panic.go:505 +0x258 html/template.(*Template).escape(0x0, 0x0, 0x0) D:/Go/src/html/template/template.go:95 +0x49 html/template.(*Template).Execute(0x0, 0x8ca900, 0xc04215c0e0, 0x852fe0, 0xc0421382a0, 0x0, 0x0) D:/Go/src/html/template/template.go:119 +0x41 main.login(0x8cd3c0, 0xc04215c0e0, 0xc042146000) D:/go_workspace/webProject/src/main.go:37 +0x369 net/http.HandlerFunc.ServeHTTP(0x8acd50, 0x8cd3c0, 0xc04215c0e0, 0xc042146000) D:/Go/src/net/http/server.go:1947 +0x4b net/http.(*ServeMux).ServeHTTP(0xa6d8c0, 0x8cd3c0, 0xc04215c0e0, 0xc042146000) D:/Go/src/net/http/server.go:2337 +0x1aa net/http.serverHandler.ServeHTTP(0xc042064dd0, 0x8cd3c0, 0xc04215c0e0, 0xc042146000) D:/Go/src/net/http/server.go:2694 +0x1eb net/http.(*conn).serve(0xc042058e60, 0x8cd580, 0xc04213a040) D:/Go/src/net/http/server.go:1830 +0x11f9 created by net/http.(*Server).Serve D:/Go/src/net/http/server.go:2795 +0x6eb ```

有疑问加站长微信联系(非本文作者)

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

826 次点击  
加入收藏 微博
2 回复  |  直到 2018-03-19 09:11:37
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传