猿问

vue-router history模式下,get请求没有发送到后台

为了避免丑陋的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到底要怎么搞呢


POPMUISE
浏览 1049回答 2
2回答

料青山看我应如是

如果是history模式的话 多配置一个 路径 {path: '*',name: 'index',component: index},完整的如下export default new Router({mode: 'history',routes: [     {        path: '*',        name: 'index',        component: index     },     {        path: '/',        name: 'index',        component: index     } ]})
随时随地看视频慕课网APP

相关分类

Vue.js
我要回答