当调用http.Handle()下面的代码片段时,我使用自己的templateHandler类型来实现该http.Handler接口。
package main
import (
"html/template"
"log"
"net/http"
"path/filepath"
"sync"
)
type templateHandler struct {
once sync.Once
filename string
templ *template.Template
}
func (t *templateHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
t.once.Do(func() {
t.templ = template.Must(template.ParseFiles(filepath.Join("templates", t.filename)))
})
t.templ.Execute(w, nil)
}
func main() {
http.Handle("/", &templateHandler{filename: "chat.html"})
if err := http.ListenAndServe(":8080", nil); err != nil {
log.Fatal("ListenAndServe: ", err)
}
}
现在由于某种原因我必须传递一个指向http.Handle()using的指针&templateHandler{filename: "chat.html"}。如果没有,&我会收到以下错误:
cannot use (templateHandler literal) (value of type templateHandler)
as http.Handler value in argument to http.Handle:
missing method ServeHTTP
究竟为什么会发生这种情况?在这种情况下使用指针有什么区别?
指针去方法界面
炎炎设计
相关分类