在App.vue里有监听应用的生命周期
javascript
<script>
// 只能在App.vue里监听应用的生命周期
export default {
onError: function(err) {
console.log('AppOnError:', err); // 当 uni-app 报错时触发
}
}
</script>
在控制台打印里无意发现 Cannot read property 'route' of undefined
原因:该页面使用了uni.createSelectorQuery().in(this),因为vue3中没有this上下文,所以使用uni.createSelectorQuery().in(this)时会出这个错误
解决
javascript
import {getCurrentInstance} from 'vue'
const instance = getCurrentInstance(); // 获取组件实例
const query = uni.createSelectorQuery().in(instance);