我在app.json加入了splash页用于初始加载,正常从列表中进入体验版程序正常,但是从扫码绑定邀请页进入后,会自动跳入index,Splash页完全不显示,后续点击右上角的Home会跳至splash,才进入正常加载。微信小程序挂掉了 这么长时间了 还没官方回复嘛##微信小程序教程 ...。
现在的做法是在index中判断初始加载的数据是否存在,不存在redirectTo回splash。
另,index和另一页面在app.json中通过tab注册。
{
"pages": [
"pages/splash/splash",
"pages/index/index",
"pages/logs/logs",
"pages/auth/auth",
"pages/mine/mine",
"pages/no_auth/no_auth",
"pages/error/error",
"pages/edit_info/edit_info"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "Black Market",
"navigationBarTextStyle": "black"
},
"tabBar": {
"backgroundColor": "#fff",
"selectedColor": "black",
"list": [{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "images/homepage.png",
"selectedIconPath": "images/homepage_fill.png"
}, {
"pagePath": "pages/mine/mine",
"text": "我",
"iconPath": "images/mine.png",
"selectedIconPath": "images/mine_fill.png"
}]
}
}
微信小程序开发问题解答 本文来自微信小程序工厂 http://www.xcxgc.com,转载请保留。
微信小程序开发者回答:
F***:
那个好像是在你设置体验版的时候有一个填地址的地方,当你扫码后直接进入该路径,你可以在那更改,目测默认是你的index路径
良***:
体验版设置:
微信web开发者工具 Beta版 点击不了picker 控件##微信小程序开发 ...
X***:
似乎需要手动改一次,我默认的就是splash页面……现在正常了
本文网址:http://www.91bianli.com/weixinxiaochengxu/30649.html