gpt4 book ai didi

reactjs - 如何使用 gorilla/mux 在 GO 中将我的 bundle.js 文件与我的 html 一起交付

转载 作者:IT王子 更新时间:2023-10-29 02:31:30 25 4
gpt4 key购买 nike

我正在尝试制作一个带有 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>

目前我这样做是为了将两个文件都传送到“/” url

bs := http.FileServer(http.Dir("public"))
http.Handle("/public/", http.StripPrefix("/public/", bs))

fs := http.FileServer(http.Dir("./static"))
http.Handle("/", fs)

我现在需要使用 gorilla/mux 来匹配这样的可变参数

r.HandleFunc("/loc/{id}", getLoc)

但如果我这样做,我还必须从默认的多路复用器更改为 gorilla 路由器

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。我如何使用 gorilla mux 做到这一点?

最佳答案

您应该使用 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)

引用Gorilla mux document

关于reactjs - 如何使用 gorilla/mux 在 GO 中将我的 bundle.js 文件与我的 html 一起交付,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51804258/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com