使用 go:embed 在 golang gin-gonic 中提供 React 静态文件,在前端 URL 上重新加载时出现 404 错误

Har*_*wal 7 embed go reactjs go-gin

我使用gin和 go1.17构建了一个 go 应用程序。

我正在使用go:embedto 为使用 React 构建的 SPA 应用程序提供静态内容。(尝试https://github.com/gin-contrib/static/issues/19中建议的方法)。我的前端文件位于构建文件夹中

build/index.html
build/asset-manifest.json
build/static/css/**
build/static/js/**
build/manifest.json
Run Code Online (Sandbox Code Playgroud)
//go:embed build/*
var reactStatic embed.FS

type embedFileSystem struct {
    http.FileSystem
    indexes bool
}

func (e embedFileSystem) Exists(prefix string, path string) bool {
    f, err := e.Open(path)
    if err != nil {
        return false
    }

    // check if indexing is allowed
    s, _ := f.Stat()
    if s.IsDir() && !e.indexes {
        return false
    }

    return true
}

func EmbedFolder(fsEmbed embed.FS, targetPath string, index bool) static.ServeFileSystem {
    subFS, err := fs.Sub(fsEmbed, targetPath)
    if err != nil {
        panic(err)
    }
    return embedFileSystem{
        FileSystem: http.FS(subFS),
        indexes:    index,
    }
}

func main() {
    router := gin.Default()

    fs := EmbedFolder(reactStatic, "build", true)

    //Serve frontend static files
    router.Use(static.Serve("/", fs))
    /* THESE ARE MY STATIC URLs FROM THE REACT APP in FRONTEND  */
    router.Use(static.Serve("/login", fs))
    router.Use(static.Serve("/calendar", fs))

    router.NoRoute(func(c *gin.Context) {
        c.JSON(404, gin.H{
            "code": "PAGE_NOT_FOUND", "message": "Page not found",
        })
    })

    setupBaseRoutes(router, database)

    httpServerExitDone := &sync.WaitGroup{}
    httpServerExitDone.Add(1)

    srv, ln := server.StartServer(router, httpServerExitDone)

    log.Printf("Starting Server at %s", ln.Addr().String())

    quit := make(chan os.Signal)
    signal.Notify(quit, os.Interrupt)
    <-quit
    log.Println("Shutdown Server ...")

    ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
    defer cancel()
    if err := srv.Shutdown(ctx); err != nil {
        log.Fatal("Server Shutdown:", err)
    }
    log.Println("Server exiting")
}
Run Code Online (Sandbox Code Playgroud)

http://localhost:8000/当应用程序加载并打开页面时,它会正确打开,我可以导航到http://localhost:8000/calendar使用react-router-dom。但是当我重新加载页面时http://localhost:8000/calendar,我收到 404 错误。

Har*_*wal 2

build/index.html我设法通过重命名来找到解决方法build/index.htm

由于某种原因,index.html在 gin 使用的某些 golang 库中被硬编码,导致页面重新加载时出现 404。

我在 Github 问题中读到了相关内容,但现在似乎找不到该问题的链接。