为了避免丑陋的URL,使用vue-router的时候选择了history模式,后端用的express,然后按照官网配置了以下const history = require('connect-history-api-fallback');app.use(history());app.use(express.static(path.join(__dirname, '../client/dist')));但是当前端发出的get请求,地址栏成为http://localhost:3000/?tab=technology 的时候,请求并没有发出去,返回的还是index.html文件,怎么样才能让请求能够正确发送出去呢,看了connect-history-api-fallback的官方文档,一团浆糊还是不是很懂,有没有大佬指点一下,或者有Git项目学习下也好啊,实在不知道要怎么搞了,按照官网的NGINX配置了之后完全是可以的,express到底要怎么搞呢
2 回答
料青山看我应如是
TA贡献1772条经验 获得超8个赞
如果是history模式的话 多配置一个 路径
{
path: '*',
name: 'index',
component: index
},
完整的如下
export default new Router({
mode: 'history',routes: [ { path: '*', name: 'index', component: index }, { path: '/', name: 'index', component: index } ]
})
添加回答
举报
0/150
提交
取消