go “静态目录服务” http.FileServer

参照手册http://godoc.golangtc.com/pkg/net/http/#FileServer

里面给了Example:

http.Handle("/", http.FileServer(http.Dir("/tmp")))

这个是对目录提供静态映射服务,如果是单个文件

http.HandleFunc("/static/", func(w http.ResponseWriter, r *http.Request) {
    http.ServeFile(w, r, r.URL.Path[1:])})
})

完整例子:


package main

import (
    "fmt"
    "net/http"
)

func main() {
    http.HandleFunc("/", homeHandler)
    http.HandleFunc("/static/", func(w http.ResponseWriter, r *http.Request) {
        http.ServeFile(w, r, r.URL.Path[1:])
    })
    panic(http.ListenAndServe(":17901", nil))
}

func homeHandler(w http.ResponseWriter, r *http.Request) {
    fmt.Fprintf(w, "

Welcome Home!

Show Image!")
}

本文来自:开源中国博客

感谢作者:ywzjackal

查看原文:go “静态目录服务” http.FileServer

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。