go文件服务器中http.StripPrefix的作用是什么?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。
当访问localhost:xxxx/tmpfiles时,会路由到fileserver进行处理
当访问URL为/tmpfiles/example.txt时,fileserver会将/tmp与URL进行拼接,得到/tmp/tmpfiles/example.txt,而实际上example.txt的地址是/tmp/example.txt,因此这样将访问不到相应的文件,返回404 NOT FOUND。
因此解决方案就是把URL中的/tmpfiles/去掉,而http.StripPrefix做的就是这个。
补充:go语言实现一个简单的文件服务器 http.FileServer
代码如下:
package main import ( "flag" "fmt" "github.com/julienschmidt/httprouter" "log" "net/http" "strings" "time" ) func main() { root := flag.String("p", "", "file server root directory") flag.Parse() if len(*root) == 0 { log.Fatalln("file server root directory not set") } if !strings.HasPrefix(*root, "/") { log.Fatalln("file server root directory not begin with '/'") } if !strings.HasSuffix(*root, "/") { log.Fatalln("file server root directory not end with '/'") } p, h := NewFileHandle(*root) r := httprouter.New() r.GET(p, LogHandle(h)) log.Fatalln(http.ListenAndServe(":8080", r)) } func NewFileHandle(path string) (string, httprouter.Handle) { return fmt.Sprintf("%s*files", path), func(w http.ResponseWriter, r *http.Request, p httprouter.Params) { http.StripPrefix(path, http.FileServer(http.Dir(path))).ServeHTTP(w, r) } } func LogHandle(handle httprouter.Handle) httprouter.Handle { return func(w http.ResponseWriter, r *http.Request, p httprouter.Params) { now := time.Now() handle(w, r, p) log.Printf("%s %s %s done in %v", r.RemoteAddr, r.Method, r.URL.Path, time.Since(now)) } }
准备测试文件
编译运行
用浏览器访问
关于go文件服务器中http.StripPrefix的作用是什么问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注亿速云行业资讯频道了解更多相关知识。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。