问下 为什么以下的代码 访问URL后 返回的是这个HTML全部字符串 而不是HTML模板呢, 以前的都正常就唯独这个不正常
好奇怪 来求助大家 帮帮忙。 什么问题 研究好久了。。
~~~
import(
"html/template"
)
func TEST1(w http.ResponseWriter, r *http.Request){
r.ParseForm()
if r.Method == "GET"{
tp11, _:= template.ParseFiles("console.html")
tp11.Execute(w, nil)
}
}
console.html文件
<!DOCTYPE html>
<html>
<head>
<title>template</title>
</head>
<body>
hello<br>
</body>
</html>
~~~
有疑问加站长微信联系(非本文作者)