无效的 page.json [“window“] 页面.json配置了“window“: {“disableScroll“: true}

 问题:启动小程序时报错 无效的 page.json ["window"] 页面

无效的 page.json [“window“] 页面.json配置了“window“: {“disableScroll“: true}_第1张图片

 

解决:

app.json 全局配置才使用window对象,在单独的页面直接写disableScroll:true即可


//app.json中添加,window里面添加就可以了
  "window": {
    "disableScroll": true
  },
  
  //单独设置,比如index下,就在index.json设置
  {
    "navigationBarTitleText": "首页",
    "disableScroll":true

}

你可能感兴趣的:(json,前端,github)