有一功能函数, 用于解析html并输出到 浏览器:
```go
func (this *TemplateEngine) Dispatch(w http.ResponseWriter, r *http.Request, path string) {
// 获取html所在位置
real_path := g_global_cfg["html_templ"] + path
// 进行template解析
t, err := template.ParseFiles(real_path)
CheckError(err)
// 输出
err = t.Execute(w, nil)
CheckError(err)
}
```
但是在浏览器只输出了html源代码:
![localhost9090 - 360安全浏览器 8.1.jpg](http://studygolang.qiniudn.com/160504/3d5ec439ce48a6e73c18c18fdfd42868.jpg)
求解释
更多评论