微信小程序 进入 主页前的 页面怎么设置
微信小程序进入主页前的页面可以通过修改app.json文件中的"pages"数组来设置。在"pages"数组中,第一个页面即为小程序进入主页前的页面。可以将需要设置为进入主页前的页面的页面放在"pages"数组的第一位。例如:
{
"pages": [
"pages/home/home", // 这是进入主页前的页面
"pages/index/index",
"pages/cart/cart",
"pages/profile/profile"
],
"window": {
"navigationBarTitleText": "小程序",
"navigationBarBackgroundColor": "#ffffff",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#999",
"selectedColor": "#1AAD19",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "assets/tabbar/home.png",
"selectedIconPath": "assets/tabbar/home-active.png"
},
{
"pagePath": "pages/cart/cart",
"text": "购物车",
"iconPath": "assets/tabbar/cart.png",
"selectedIconPath": "assets/tabbar/cart-active.png"
},
{
"pagePath": "pages/profile/profile",
"text": "我的",
"iconPath": "assets/tabbar/profile.png",
"selectedIconPath": "assets/tabbar/profile-active.png"
}
]
},
"sitemapLocation": "sitemap.json"
}
在上面的示例中,"pages/home/home"即为进入主页前的页面,位于"pages"数组的第一位。其他页面则按需添加在"pages"数组中
原文地址: https://www.cveoy.top/t/topic/dxf6 著作权归作者所有。请勿转载和采集!