SilurianYang / uni-simple-router

A simple, lightweight 'uni-app' routing plugin
https://v2.hhyang.cn/v2/
MIT License
748 stars 164 forks source link

应用uni-smiple-router后除小程序外,在apk和h5浏览器中显示白屏,只有底部tabbar #141

Closed wjs1995 closed 4 years ago

wjs1995 commented 4 years ago

问题描述 [问题描述:在浏览器和app白屏,只显示底部tabbar,刷新网页的瞬间会出现页面的title然后消失

复现步骤 [复现问题的步骤]

  1. 启动 '...' uniapp 安装 u-s-router, 安装 u-s-r- read
  2. 点击 '启动
  3. 查看 出现tabbar 首页一闪

[或者可以直接贴源代码]

预期结果 [使用简洁清晰的语言描述你希望生效的预期结果]

实际结果 [这里请贴上你的报错截图或文字]

系统信息:

补充信息 [可选] [根据你的分析,出现这个问题的原因可能在哪里?]

SilurianYang commented 4 years ago

99% 配置问题 检测你的配置和挂载点

//v1.3.5起 H5端 你应该去除原有的app.$mount();使用路由自带的渲染方式
// #ifdef H5
    RouterMount(app,'#app');
// #endif

// #ifndef H5
    app.$mount(); //为了兼容小程序及app端必须这样写才有效果
// #endif
wjs1995 commented 4 years ago

小程序端是可以的,打包app 和h5不行, 麻烦问一下 image 这个#app 是哪里的

SilurianYang commented 4 years ago

这个是uni-app在h5中的节点 如果你有自定义模板就换成自己的挂载点id

wjs1995 commented 4 years ago

image

wjs1995 commented 4 years ago
App.vue我是这样写的
wjs1995 commented 4 years ago
wjs1995 commented 4 years ago

wjs1995 commented 4 years ago

``