1 Star 0 Fork 0

叶明志/golang练习

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.go 370 Bytes
一键复制 编辑 原始数据 按行查看 历史
package main
import (
"html/template"
"net/http"
)
func testTemplate(w http.ResponseWriter, r *http.Request) {
temp := template.Must(template.ParseFiles("H:/GoProject/src/GolangLearnPractice1/bookstore/web2_template/index.html"))
temp.Execute(w, "hello world!")
}
func main() {
http.HandleFunc("/testTemplate", testTemplate)
http.ListenAndServe(":8080", nil)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/yemingzhi/GolangLearnPractice1.git
git@gitee.com:yemingzhi/GolangLearnPractice1.git
yemingzhi
GolangLearnPractice1
golang练习
2bf136849dce

搜索帮助