嘗試執行此代碼時出現一些內存錯誤:package webimport ( "net/http" "html/template")type Hello struct { Level string}func Main(w http.ResponseWriter, r *http.Request) { h := Hello{Level: "gsdfg"} t, _ := template.ParseFiles("web.html") t.Execute(w, h)}我在瀏覽器中得到的錯誤信息是這樣的:the runtime process gave a bad HTTP response: ''2015/03/26 11:34:56 http: panic serving 127.0.0.1:43269: runtime error: invalid memory address or nil pointer dereference我不明白我做錯了什么......
內存錯誤,Go 中的 html/模板
慕的地8271018
2021-09-27 10:55:41
