uni-app使用uni-simple-router,导致H5端uni.navigateBack()方法报错
如题,报错信息如下:
TypeError: Cannot read property ‘constructor’ of undefined
解决方法1:
调用uni.navigateBack方法时传参数
uni.navigateBack(1);
解决方法2:
在router/index.js文件里加上 h5:{ rewriteFun:false } ,关掉uni-simple-router对reLaunch/navigateBack两个方法的重写