我正在尝试使用Go后端和React前端制作一个简单的服务器。为此,我需要发送我的静态html和bundle.js文件。她是html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://cdn.rawgit.com/twbs/bootstrap/48938155eb24b4ccdde09426066869504c6dab3c/dist/css/bootstrap.min.css">
<title>Mern Gen</title>
</head>
<body>
<main id='root'>
App has crashed
</main>
<script src="../public/bundle.js"
type="text/javascript"></script>
</body>
</html>
目前,我正在这样做,以将两个文件都传递到'/'网址
bs := http.FileServer(http.Dir("public"))
http.Handle("/public/", http.StripPrefix("/public/", bs))
fs := http.FileServer(http.Dir("./static"))
http.Handle("/", fs)
我现在需要使用大猩猩/ mux来匹配这样的可变参数
r.HandleFunc("/loc/{id}", getLoc)
但是,如果我这样做,我还必须从默认的多路复用器更改为大猩猩路由器
r := mux.NewRouter()
bs := http.FileServer(http.Dir("public"))
r.Handle("/public/", http.StripPrefix("/public/", bs))
fs := http.FileServer(http.Dir("./static"))
r.Handle("/", fs)
这不起作用。我收到一条错误消息,指出未找到我的bundle.js。我该如何用大猩猩混血呢?
答案 0 :(得分:3)
您应该使用PathPrefix
来提供public
目录中的文件:
r := mux.NewRouter()
bs := http.FileServer(http.Dir("public"))
r.PathPrefix("/public/").Handler(http.StripPrefix("/public/", bs))
fs := http.FileServer(http.Dir("./static"))
r.Handle("/", fs)
http.Handle("/", r)