图一<br/>
![image.png](https://static.studygolang.com/181210/f913ee6ca4c5a1b031a32fc5b2a20d89.png)
图二<br/>
![image.png](https://static.studygolang.com/181210/c8bdf1353db3b8a8f8310d4ac6501b24.png)
图一中,启动web服务器,输出字符串,访问localhost:8081,一起正常;
图二中,将输出字符串改为解析html,再访问localhost:8081,这时报错。<br/>
![image.png](https://static.studygolang.com/181210/d8a16aa9209ec634fd3d5186e254a510.png)
请问哪位高人可以指点小弟,这个怎么解决,谢谢
```go
t,_ := template.ParseFiles("index.html")
```
```go
t,err := template.ParseFiles("index.html")
if err == nil {
//balabala...
}
```
你忽略了 err,错误时 t 为 nil,于是调用时出现空指针错误。
自己用心一下
#1
更多评论
<a href="/user/xmge" title="@xmge">@xmge</a> 谢谢,我是一个前端,刚刚开始学习后台语言,有点蒙蔽,谢谢
#3