gpt4 book ai didi

go - 生产中的 vue-router(使用 Go 服务)

转载 作者:IT王子 更新时间:2023-10-29 01:38:32 24 4
gpt4 key购买 nike

我想完全分离客户端和服务器,所以我用 vue init webpack my-project 创建了一个 vuejs 项目。在这个项目中,我将 vue-router 用于我的所有路由(这包括特殊路径,如 /user/SOMEID..

这是我的 routes.js 文件:

import App from './App.vue'

export const routes = [
{
path: '/',
component: App.components.home
},
{
path: '/user/:id',
component: App.components.userid
},
{
path: '*',
component: App.components.notFound
}
]

当我使用 npm run dev 运行应用程序时,一切正常。我现在已准备好部署到云,所以我运行了 npm run build。因为我需要使用 HTTP 服务器,所以我决定也使用 Go。这是我的 Go 文件:

package main

import (
"fmt"
"github.com/go-chi/chi"
"github.com/me/myproject/server/handler"
"net/http"
"strings"
)

func main() {
r := chi.NewRouter()

distDir := "/home/me/code/go/src/github.com/me/myproject/client/dist/static"
FileServer(r, "/static", http.Dir(distDir))

r.Get("/", IndexGET)

http.ListenAndServe(":8080", r)
}

func IndexGET(w http.ResponseWriter, r *http.Request) {
handler.Render.HTML(w, http.StatusOK, "index", map[string]interface{}{})
}

func FileServer(r chi.Router, path string, root http.FileSystem) {
if strings.ContainsAny(path, "{}*") {
panic("FileServer does not permit URL parameters.")
}

fs := http.StripPrefix(path, http.FileServer(root))

if path != "/" && path[len(path)-1] != '/' {
r.Get(path, http.RedirectHandler(path+"/", 301).ServeHTTP)
path += "/"
}
path += "*"

r.Get(path, http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
fs.ServeHTTP(w, r)
}))
}

我能够加载主页 (App.components.home),那里似乎一切正常(css、图像、翻译、对服务器的调用和响应)。但是当我尝试打开其他应该导致 404 或加载用户的路由时,我只会得到响应 404 page not found 明文(不是它应该呈现的 vue notFound 组件)。 .

知道我做错了什么以及如何解决吗?


编辑:这是 main.js 文件中路由器设置的另一部分:

const router = new VueRouter({
mode: 'history',
base: __dirname,
routes
})

new Vue({
el: '#app',
router,
i18n,
render: h => h(App)
})

最佳答案

我可能是错的,但也许您尝试访问的路由在服务器(在您的 Go http 服务器中)中得到解析。

您可以尝试在您的 vue-router 初始化中删除 mode: 'history' 以便它默认为 hash 模式(然后路由将在浏览器中解析) .请参阅this链接。

关于go - 生产中的 vue-router(使用 Go 服务),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46144883/

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