gpt4 book ai didi

vue.js - 如何更改 nuxt.js 路由器以使用自定义路径?

转载 作者:行者123 更新时间:2023-12-02 03:21:25 26 4
gpt4 key购买 nike

对于软件开发营销网站,我有 30 多个登录页面,我喜欢将它们保存在 ./pages/landing 文件夹中。因此,显然 ./pages/landing 内的文件可以通过以下方式访问,例如:

www.lorem.com/landing/python-development-experts/
www.lorem.com/landing/java-development-experts/

但我需要从路径中删除 /landing/ ,并且仍然希望将文件保留在 ./pages/landing 文件夹中,但需要使用此访问文件路径:

www.lorem.com/python-development-experts/
www.lorem.com/java-development-experts/

请帮忙,谢谢。

最佳答案

这是我在 nuxt.config.js 中所做的事情

router: {
extendRoutes: (routesIn) => {
routesIn.forEach((r) => {
if (r.path.includes('/landing/')) {
r.path = r.path.replace('/landing', '');
}
});
return routesIn;
},
},

关于vue.js - 如何更改 nuxt.js 路由器以使用自定义路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54646649/

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