golang搭建靜態web伺服器
阿新 • • 發佈:2018-12-08
我胡漢三又回來啦。好久沒發文了,為保持平臺上的活躍度,我今天就分享下個剛學到的知識,使用golang搭建靜態web伺服器,親測可用,附程式碼!
使用過golang
語言的程式猿都應該知道,在使用golang
開發的時候,我們是不需要諸如iis
,apache
,nginx
,kangle
等伺服器支援的。
為什麼呢?
原因是,golang
的net/http
包中已經提供了HTTP
的客戶端與服務端實現方案。
網上言論都說golang
不適合做web開發,相對php、java、.net、nodejs
等各類後端語言來說,使用golang
來做web開發,確實是一個大工程。
昨晚恰好看到一篇關於使用golang
我是新手上路,照搬文章裡的內容,總是磕磕碰碰,每次執行都是找不到路徑。程式碼是這樣的:
func main() {
http.Handle("/css/", http.FileServer(http.Dir("template")))
http.Handle("/js/", http.FileServer(http.Dir("template")))
http.ListenAndServe(":8080", nil)
}
目錄結構:
src
|--main
| |-main.go
|--template
| |-css
| |--admin.css
| |-js
| |--admin.js
| |-html
| |--404.html
以上執行結果是:找不到template
這個路徑。
其實我很納悶,文章作者都可以成功執行起來這個demo,怎麼到我這裡,就啟動不來了呢?
那麼問題來了:
1.是什麼原因導致程式起不來呢?
2.http.Dir()指向的是什麼路徑?
於是我追蹤日誌,如下
2018/01/07 11:09:28 open template/html/404.html: The system cannot find the path specified.
發現問題是出在找不到路徑
上。解決了第一個問題後,那麼接下來就需要搞明白http.Dir()
到底指向的是哪個路徑。
我查看了官方例子:
log.Fatal(http.ListenAndServe(":8080", http.FileServer(http.Dir("/usr/share/doc"))))
從上面例子http.Dir("/usr/share/doc")
可看出,該路徑指向的是linux系統裡的絕對路徑。那麼問題就解決了:我只需要將http.Dir()
的路徑改為執行時的相對路徑,或者使用絕對路徑就可以了。
另一個例子,使用http.StripPrefix()方法:
// To serve a directory on disk (/tmp) under an alternate URL
// path (/tmpfiles/), use StripPrefix to modify the request
// URL's path before the FileServer sees it:
http.Handle("/tmpfiles/", http.StripPrefix("/tmpfiles/", http.FileServer(http.Dir("/tmp"))))
可看出,tmpfiles
是tmp
目錄下的一個子目錄。
既然問題都解決了,那麼就修改一下程式碼,重新執行
func Template_dir() string {
template_dir := "E:\\project\\gotest\\src\\template"
return template_dir
}
func main() {
http.Handle("/css/", http.FileServer(http.Dir(Template_dir())))
http.Handle("/js/", http.FileServer(http.Dir(Template_dir())))
http.ListenAndServe(":8080", nil)
}
編譯執行後,在瀏覽器中輸入localhost:8080/css/
,可成功看到template/css/
目錄下的admin.css
檔案。