标签:back art .com 配置 developer frame 需要 学习链接 学习
app.json(控制所有页面的窗口表现)配置示例
{
"window":{
"navigationBarBackgroundColor": "#ffffff",
"navigationBarTextStyle": "black",
"navigationBarTitleText": "微信接口功能演示",
"backgroundColor": "#eeeeee",
"backgroundTextStyle": "light"
}
}
而每一个小程序页面也可以使用.json文件来对本页面的窗口表现进行配置,需要注意的是页面的.json
只能设置 window
相关的配置项,以决定本页面的窗口表现,所以无需写 window
这个键。
学习链接:https://developers.weixin.qq.com/miniprogram/dev/framework/config.html#全局配置
标签:back art .com 配置 developer frame 需要 学习链接 学习
原文地址:https://www.cnblogs.com/studyh5/p/9823419.html