有2个问题:
1:https://developers.weixin.qq.com/miniprogram/dev/component/navigation-bar.html。我依照这个文档,配置组件属性,除了title全部都不生效。其他一些属性比如color,back等我尝试了一下有效,但在文档上全部都没有,为啥?
// title有效,background-color设置背景色不生效,但是你把background-color写成color就生效,但是color文档上没有
<navigation-bar title="aaa" background-color="#14c145"></navigation-bar>
2:为什么在app.json中,window中的全局的样式配置基本都无效
// 这些样式都没有生效
"window": {
"navigationBarBackgroundColor":"#14c145",
"backgroundColor": "#14c145",
"navigationBarTextStyle": "black",
"navigationStyle": "custom",
"backgroundTextStyle": "dark"
},
1、你代码中的 navigation-bar 用的是项目中自带的自定义导航栏组件吧?如果是的话,参考这个文档:https://wechat-miniprogram.github.io/weui/docs/navigation.html
2、因为你配置了自定义导航栏。