也可以在webview组件中设置vue-router的mode为history模式,这样就可以使用uni.navigateBack()方法进行返回
时间: 2023-11-27 14:54:03 浏览: 66
是的,你说得对。在使用Vue Router时,可以将mode设置为history模式,这样就可以使用uni.navigateBack()方法进行返回。具体来说,可以在router/index.js文件中设置mode选项:
```
const router = new VueRouter({
mode: 'history', // 设置为history模式
routes: [...]
})
```
然后,在使用uni.navigateBack()方法时,可以将delta参数设置为1,表示返回上一页:
```
uni.navigateBack({
delta: 1
})
```
注意,使用history模式时,还需要在服务器端进行相应的配置,以确保在刷新页面时,能正确地加载对应的路由。
阅读全文