主頁 > 知識(shí)庫 > 在go文件服務(wù)器加入http.StripPrefix的用途介紹

在go文件服務(wù)器加入http.StripPrefix的用途介紹

熱門標(biāo)簽:地圖區(qū)域圖標(biāo)注后導(dǎo)出 江蘇呼叫中心外呼系統(tǒng)有效果嗎 谷歌美發(fā)店地圖標(biāo)注 400開頭電話怎樣申請(qǐng) 杭州人工智能電銷機(jī)器人費(fèi)用 官渡電銷外呼管理系統(tǒng)怎么收費(fèi) 赤峰電銷 貴州電話智能外呼系統(tǒng) 利用地圖標(biāo)注位置

例子:

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

當(dāng)訪問localhost:xxxx/tmpfiles時(shí),會(huì)路由到fileserver進(jìn)行處理

當(dāng)訪問URL為/tmpfiles/example.txt時(shí),fileserver會(huì)將/tmp與URL進(jìn)行拼接,得到/tmp/tmpfiles/example.txt,而實(shí)際上example.txt的地址是/tmp/example.txt,因此這樣將訪問不到相應(yīng)的文件,返回404 NOT FOUND。

因此解決方案就是把URL中的/tmpfiles/去掉,而http.StripPrefix做的就是這個(gè)。

補(bǔ)充:go語言實(shí)現(xiàn)一個(gè)簡(jiǎn)單的文件服務(wù)器 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))
 }
}

準(zhǔn)備測(cè)試文件

編譯運(yùn)行

用瀏覽器訪問

以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教。

您可能感興趣的文章:
  • go 原生http web 服務(wù)跨域restful api的寫法介紹
  • golang http使用踩過的坑與填坑指南
  • Go http client 連接池不復(fù)用的問題
  • Golang實(shí)現(xiàn)http server提供壓縮文件下載功能
  • golang語言http協(xié)議get拼接參數(shù)操作
  • Golang 實(shí)現(xiàn)分片讀取http超大文件流和并發(fā)控制
  • Go 實(shí)現(xiàn)HTTP中間人代理的操作

標(biāo)簽:宜春 泰安 黔西 武漢 松原 河池 保定 鷹潭

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《在go文件服務(wù)器加入http.StripPrefix的用途介紹》,本文關(guān)鍵詞  在,文件,服務(wù)器,加入,http.StripPrefix,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《在go文件服務(wù)器加入http.StripPrefix的用途介紹》相關(guān)的同類信息!
  • 本頁收集關(guān)于在go文件服務(wù)器加入http.StripPrefix的用途介紹的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章