我想在文本的第一个和下面打印出文本信息,然后将图像显示出来。
但我收到http: multiple response.WriteHeader calls
错误。
如何在一个页面中使用一个hadler来提供iamges和文本?
func handler(w http.ResponseWriter, r *http.Request) {
fmt.Fprint(w, "Hello, world!")
fp := path.Join("images", "gopher.png")
http.ServeFile(w, r, fp)
}
func main() {
http.HandleFunc("/", handler)
http.ListenAndServe(":3000", nil)
}
答案 0 :(得分:0)
您无法写文本,然后调用ServeFile在文本后输出二进制图片。
如果你想用图像提供文本,那么使用html,设置静态文件处理程序并使用html:
var tmpl = `<!doctype html>
<html>
<head>
<title>%s</title>
</head>
<body>
<h1>%s</h1>
<div><img src="images/%s"></div>
</body>
</html>
`
func handler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, tmpl, "Hello, world!", "Hello, world!", "gopher.png")
}
func main() {
http.HandleFunc("/", handler)
http.Handle("/images/", http.FileServer(http.Dir("images/")))
http.ListenAndServe(":3000", nil)
}