gpt4 book ai didi

javascript - Vue 路由器、GitHub 页面和自定义域不能使用路由链接

转载 作者:行者123 更新时间:2023-12-05 02:03:00 29 4
gpt4 key购买 nike

我的域名:myname.com
我的 GitHub 存储库:我的名字
我的 GitHub 名称:我的名字

底层 GH-Pages URL:myname.github.io/myname

我的问题:我使用 History Vue 路由器设置了以下页面:主页、联系人、项目。
每当我访问 myname.com/contact 时,它都会将我转到 404。当我点击一个链接将我重定向到 /contacts 时,它会将它推送到地址栏,但如果你刷新,它会路由到 404。我读过这样的帖子:Deploy Vue to GitHub Pages. Error with vue-routerVue router on page refresh gets 404但问题仍然存在,自定义域增加了复杂性。我也读过这个:Vue Router return 404 when revisit to the url但是,有一个 React Router 页面的示例,其中包含一个在 GH-Pages 上工作的浏览器路由器:https://milosrancic.github.io/reactjs-website/activities , repo : https://github.com/milosrancic/reactjs-website .

这是我所做的:

  • 我的 package.json 有以下行:"homepage": "https://myname.com/"
  • 我的 vue.config.js 就是这样的:
module.exports = {
publicPath: '/'
}
  • 我的路由器在我的路径上:/src/router/index.js,传递到 main.js new Vue(),并像这样导出:
export default new VueRouter({
base: process.env.BASE_URL,
mode: 'history',
routes
})
  • 在我的 App.vue(入口组件)中,模板如下所示:
<template>
<div id="app">
<nav-bar></nav-bar>
<router-view></router-view>
</div>
</template>

最佳答案

我无法通过 Vue 解决问题,但是,tao提到,这可能是 GitHub 及其处理 URL 的方式的问题。最简单的解决方法是改用哈希路由器,以便入口 URL 保持静态。然而,这将介绍,可以说令人反感/#/在您的网址中。

鉴于 native 不支持 catch-all 路由,有人找到了解决方法:https://github.com/rafgraph/spa-github-pages . 注意:这可能对 SEO 不利,因为预期的 URL 实际上并不存在。这是在使用他们的 404 重定向并在索引页面上处理它。这是一个投资组合网站,因此,我现在可以接受。如果我或其他人找到更好的解决方案,将会更新。

解决方法:

内部/public添加一个名为 404.html 的文件并粘贴以下内容:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CHANGE THIS TO YOUR TITLE</title>
<script type="text/javascript">
// MIT License
// https://github.com/rafgraph/spa-github-pages
// This script takes the current url and converts the path and query
// string into just a query string, and then redirects the browser
// to the new url with only a query string and hash fragment,
// e.g. https://www.foo.tld/one/two?a=b&c=d#qwe, becomes
// https://www.foo.tld/?/one/two&a=b~and~c=d#qwe
// Note: this 404.html file must be at least 512 bytes for it to work
// with Internet Explorer (it is currently > 512 bytes)

// If you're creating a Project Pages site and NOT using a custom domain,
// then set pathSegmentsToKeep to 1 (enterprise users may need to set it to > 1).
// This way the code will only replace the route part of the path, and not
// the real directory in which the app resides, for example:
// https://username.github.io/repo-name/one/two?a=b&c=d#qwe becomes
// https://username.github.io/repo-name/?/one/two&a=b~and~c=d#qwe
// Otherwise, leave pathSegmentsToKeep as 0.
var pathSegmentsToKeep = 0;

var l = window.location;
l.replace(
l.protocol + '//' + l.hostname + (l.port ? ':' + l.port : '') +
l.pathname.split('/').slice(0, 1 + pathSegmentsToKeep).join('/') + '/?/' +
l.pathname.slice(1).split('/').slice(pathSegmentsToKeep).join('/').replace(/&/g, '~and~') +
(l.search ? '&' + l.search.slice(1).replace(/&/g, '~and~') : '') +
l.hash
);

</script>
</head>
<body>
</body>
</html>

内部/public/index.html , 在 <head> 中添加以下内容在<title>之后:

<script type="text/javascript">
// MIT License
// https://github.com/rafgraph/spa-github-pages
// This script checks to see if a redirect is present in the query string,
// converts it back into the correct url and adds it to the
// browser's history using window.history.replaceState(...),
// which won't cause the browser to attempt to load the new url.
// When the single page app is loaded further down in this file,
// the correct url will be waiting in the browser's history for
// the single page app to route accordingly.
(function(l) {
if (l.search[1] === '/' ) {
var decoded = l.search.slice(1).split('&').map(function(s) {
return s.replace(/~and~/g, '&')
}).join('?');
window.history.replaceState(null, null,
l.pathname.slice(0, -1) + decoded + l.hash
);
}
}(window.location))
</script>

这对我有用,我现在只需输入 myname.com/contact 即可访问联系人页面.如果您在 /public 中嵌套了 SPA,这也应该有效, 使用相同的技巧。

关于javascript - Vue 路由器、GitHub 页面和自定义域不能使用路由链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65501787/

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