go语言提供的静态服务器

go语言提供的静态服务器

在go语言中,默认提供了静态的文件服务器,使用方法如下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
*
* @Author fchunbo
* @Date 2019-03-18 13:42
*/
package main

import (
"fmt"
"log"
"net/http"
"os"
)

func sayHello(w http.ResponseWriter, r *http.Request) {
r.ParseForm() // 解析参数,默认是不会解析的
fmt.Println(r.Form)

fmt.Println("path: ", r.URL.Path)
fmt.Println("schema: ", r.URL.Scheme)

fmt.Println(r.Form["url_long"])

for k, v := range r.Form {
fmt.Println("key:", k)
fmt.Println("value: ", v)
}

// 给客户端返回结果
fmt.Fprintln(w, "hello rob")
}

func main() {
http.HandleFunc("/", sayHello)

wd, _ := os.Getwd()
http.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir(wd))))
err := http.ListenAndServe(":8080", nil)
if err != nil {
log.Fatal("ListenServer:", err)
}
}

注意:Go语言提供的静态文件服务器是基于绝对路径的,因此需要使用os.Getwd,来回去程序的路径。

用法:

1
http.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir(wd))))
# Go
Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×