鸿蒙开发比较坑的问题 Maple829 2024-10-28 93 阅读1分钟 问题1 tab组件默认只加载第一个页面,切换到其他页面再切回来时生命周期函数aboutToAppear不会触发 解决方法 使用if判断来解决重新加载组件的问题,这样HomePage组件中的生命周期函数aboutToAppear会触发 TabContent() { // 由于 if (this.currentIndex === 1) { HomePage() } }