【发布时间】:2019-01-14 00:53:22
【问题描述】:
您好,如何在 vue 中删除路由器链接中的井号。我总是在每个链接中得到一个井号,例如:http://localhost:8080/#/
export default new Router({
routes: [
{
path: '/',
name: 'SplashScreen',
component: SplashScreen
},
{
path: '/aboutus',
name: 'AboutUs',
component: AboutUs
},
{
path: '/aboutus',
name: 'Dashboard',
component: Dashboard
}
]
})
【问题讨论】:
-
这是正常行为,这是 SPA(单页应用程序)的工作方式。 “井号”表示链接不会将应用程序移动到其他页面。
-
有没有办法去掉?
-
如果我在上面放一个API请求会不会影响
-
你的 api url 示例是什么?
标签: vue.js