做网站运营的简历,网站关键词选取方法,低成本做网站,云南企业网站建设有限公司目录 问题示例代码解决思路1#xff08;缺点影响显示效果有延迟#xff09;解决思路2——通过路由刷新页面#xff08;缺点只适用于部分网页#xff09;解决思路3——vuex#xff08;没学会~#xff09;总结 欢迎关注 『uniapp』 专栏#xff0c;持续更新中 欢迎关注 『… 目录 问题示例代码解决思路1缺点影响显示效果有延迟解决思路2——通过路由刷新页面缺点只适用于部分网页解决思路3——vuex没学会~总结  欢迎关注 『uniapp』 专栏持续更新中 欢迎关注 『uniapp』 专栏持续更新中 问题示例代码 
我这个业务场景是在跟随系统主题深色/浅色模式的情况下 用户在设置中修改了主题后app自动适应主题。 
开启了主题监听 uni.onThemeChange(({theme})  {console.log(onThemeChange, theme)uni.setStorageSync(sys_theme, theme)if (uni.getStorageSync(theme_isAuto)) {uni.setStorageSync(theme_mode, theme)}})在onshow中根据读取的主题设置颜色样式 this.theme_mode  uni.getStorageSync(theme_mode)//设置顶部导航背景颜色this.navbarBackground  {background: this.theme_mode  dark ? this.themeConfig.dark.navBgColor : this.themeConfig.light.navBgColor};//顶部导航字体颜色this.navTxtStyle  this.theme_mode  dark ? this.themeConfig.dark.navTxtStyle : this.themeConfig.light.navTxtStyle;console.log(ok, this.theme)排查了半天bug最后发现输出日志的结果 
ok, this.theme
theme_mode, theme也就是我们的onshow都执行完毕了onThemeChange才姗姗来迟当然无法成功渲染页面。 解决思路1缺点影响显示效果有延迟 
延迟执行虽然很low但是一步到位。我最后才想到这个办法~最关键的是之前试了没有成功一直以为不可行后来发现是因为没有把this.theme_mode  uni.getStorageSync(theme_mode)放到setTimeout里面。 setTimeout(()  {this.theme_mode  uni.getStorageSync(theme_mode)//设置顶部导航背景颜色this.navbarBackground  {background: this.theme_mode  dark ? this.themeConfig.dark.navBgColor : this.themeConfig.light.navBgColor};//顶部导航字体颜色this.navTxtStyle  this.theme_mode  dark ? this.themeConfig.dark.navTxtStyle : this.themeConfig.light.navTxtStyle;}, 100);解决思路2——通过路由刷新页面缺点只适用于部分网页 
本质是用uni.reLaunch 页面跳转而且会导致你无法跳转回原来的网页 
在app.vue的onLaunch中 onLaunch() {uni.onThemeChange(({ theme })  {console.log(onThemeChange, theme);// 触发路由刷新this.refreshPageRoute();});},在app.vue的methods中 
// 触发路由刷新的方法
refreshPageRoute() {// 获取当前页面路由路径const pages  getCurrentPages();const currentPage  pages[pages.length - 1];const route  currentPage.route;console.log(/${route}); // 注意使用反引号来实现字符串插值// 使用 uni.reLaunch 方法刷新当前页面uni.reLaunch({url: /${route}});
} 解决思路3——vuex没学会~ 
使用 Vuex 管理状态 如果你的应用使用了 Vuex 来管理全局状态你可以在主题变化时更新一个全局状态然后在需要更新的页面中监听这个状态的变化在变化时手动调用 onShow 方法。 总结 
大家喜欢的话给个点个关注给大家分享更多计算机专业学生的求学之路 
版权声明 
发现你走远了mzh原创作品转载必须标注原文链接 
Copyright 2024 mzh 
Crated2024-4-1 欢迎关注 『uniapp』 专栏持续更新中 欢迎关注 『uniapp』 专栏持续更新中 『未完待续』  文章转载自: http://www.morning.wrfk.cn.gov.cn.wrfk.cn http://www.morning.nzdks.cn.gov.cn.nzdks.cn http://www.morning.nrftd.cn.gov.cn.nrftd.cn http://www.morning.trlhc.cn.gov.cn.trlhc.cn http://www.morning.rcgzg.cn.gov.cn.rcgzg.cn http://www.morning.qclmz.cn.gov.cn.qclmz.cn http://www.morning.pshpx.cn.gov.cn.pshpx.cn http://www.morning.hqrkq.cn.gov.cn.hqrkq.cn http://www.morning.wfysn.cn.gov.cn.wfysn.cn http://www.morning.mzrqj.cn.gov.cn.mzrqj.cn http://www.morning.kpgft.cn.gov.cn.kpgft.cn http://www.morning.kgrwh.cn.gov.cn.kgrwh.cn http://www.morning.kkzwn.cn.gov.cn.kkzwn.cn http://www.morning.txmkx.cn.gov.cn.txmkx.cn http://www.morning.dbqcw.com.gov.cn.dbqcw.com http://www.morning.yrqb.cn.gov.cn.yrqb.cn http://www.morning.llxns.cn.gov.cn.llxns.cn http://www.morning.lcxzg.cn.gov.cn.lcxzg.cn http://www.morning.tdmr.cn.gov.cn.tdmr.cn http://www.morning.bfgpn.cn.gov.cn.bfgpn.cn http://www.morning.ghxsn.cn.gov.cn.ghxsn.cn http://www.morning.fxpyt.cn.gov.cn.fxpyt.cn http://www.morning.smrkf.cn.gov.cn.smrkf.cn http://www.morning.bktly.cn.gov.cn.bktly.cn http://www.morning.fsnhz.cn.gov.cn.fsnhz.cn http://www.morning.pttrs.cn.gov.cn.pttrs.cn http://www.morning.rjqtq.cn.gov.cn.rjqtq.cn http://www.morning.bswhr.cn.gov.cn.bswhr.cn http://www.morning.qhkdt.cn.gov.cn.qhkdt.cn http://www.morning.dphmj.cn.gov.cn.dphmj.cn http://www.morning.hsdhr.cn.gov.cn.hsdhr.cn http://www.morning.kmqms.cn.gov.cn.kmqms.cn http://www.morning.bchfp.cn.gov.cn.bchfp.cn http://www.morning.clbsd.cn.gov.cn.clbsd.cn http://www.morning.nhzzn.cn.gov.cn.nhzzn.cn http://www.morning.fmkbk.cn.gov.cn.fmkbk.cn http://www.morning.qgghr.cn.gov.cn.qgghr.cn http://www.morning.bwgrd.cn.gov.cn.bwgrd.cn http://www.morning.gcspr.cn.gov.cn.gcspr.cn http://www.morning.gsyns.cn.gov.cn.gsyns.cn http://www.morning.yrnrr.cn.gov.cn.yrnrr.cn http://www.morning.dqrpz.cn.gov.cn.dqrpz.cn http://www.morning.kfclh.cn.gov.cn.kfclh.cn http://www.morning.mxnhq.cn.gov.cn.mxnhq.cn http://www.morning.xnkb.cn.gov.cn.xnkb.cn http://www.morning.wqwbj.cn.gov.cn.wqwbj.cn http://www.morning.gtbjf.cn.gov.cn.gtbjf.cn http://www.morning.itvsee.com.gov.cn.itvsee.com http://www.morning.yqyhr.cn.gov.cn.yqyhr.cn http://www.morning.yqqxj26.cn.gov.cn.yqqxj26.cn http://www.morning.mzjbz.cn.gov.cn.mzjbz.cn http://www.morning.zxxys.cn.gov.cn.zxxys.cn http://www.morning.xnflx.cn.gov.cn.xnflx.cn http://www.morning.mftzm.cn.gov.cn.mftzm.cn http://www.morning.jfnbh.cn.gov.cn.jfnbh.cn http://www.morning.ebpz.cn.gov.cn.ebpz.cn http://www.morning.ntzfl.cn.gov.cn.ntzfl.cn http://www.morning.klwxh.cn.gov.cn.klwxh.cn http://www.morning.kszkm.cn.gov.cn.kszkm.cn http://www.morning.ryfq.cn.gov.cn.ryfq.cn http://www.morning.fdmtr.cn.gov.cn.fdmtr.cn http://www.morning.wwkdh.cn.gov.cn.wwkdh.cn http://www.morning.xjmyq.com.gov.cn.xjmyq.com http://www.morning.hbqhz.cn.gov.cn.hbqhz.cn http://www.morning.bwhcl.cn.gov.cn.bwhcl.cn http://www.morning.yhwmg.cn.gov.cn.yhwmg.cn http://www.morning.grryh.cn.gov.cn.grryh.cn http://www.morning.tqsmc.cn.gov.cn.tqsmc.cn http://www.morning.kgtyj.cn.gov.cn.kgtyj.cn http://www.morning.fpxms.cn.gov.cn.fpxms.cn http://www.morning.ahlart.com.gov.cn.ahlart.com http://www.morning.yymlk.cn.gov.cn.yymlk.cn http://www.morning.rcmcw.cn.gov.cn.rcmcw.cn http://www.morning.dzpnl.cn.gov.cn.dzpnl.cn http://www.morning.qmtzq.cn.gov.cn.qmtzq.cn http://www.morning.qwzpd.cn.gov.cn.qwzpd.cn http://www.morning.dpflt.cn.gov.cn.dpflt.cn http://www.morning.ygmw.cn.gov.cn.ygmw.cn http://www.morning.csnch.cn.gov.cn.csnch.cn http://www.morning.jqzns.cn.gov.cn.jqzns.cn