美文网首页
小程序配置

小程序配置

作者: 致青春_bf42 | 来源:发表于2020-05-21 16:02 被阅读0次

    全局配置

    小程序根目录下的 app.json 文件用来对微信小程序进行全局配置,决定页面文件的路径、窗口表现、设置网络超时时间、设置多 tab 等。

    完整配置项说明请参考小程序全局配置
    以下是一个包含了部分常用配置选项的 app.json :

    {
      "pages": [
        "pages/home/home",
        "pages/my/my"
      ],
      "window": {
        "backgroundColor": "#F6F6F6",
        "backgroundTextStyle": "light",
        "navigationBarBackgroundColor": "#eeeeee",
        "navigationBarTitleText": "微信小程序开发",
        "navigationBarTextStyle": "black"
      },
      
      "tabBar": {
        "list": [{
          "pagePath": "pages/home/home",
          "text": "首页"
        }, {
          "pagePath": "pages/my/my",
          "text": "我的"
        }]
      },
      "networkTimeout": {
        "request": 20000,
        "connectSocket": 20000,
        "uploadFile": 20000,
        "downloadFile": 20000
      },
      "debug": true,
      "sitemapLocation": "sitemap.json",
      "style": "v2",
    
      "navigateToMiniProgramAppIdList": [
        "wxae11207ff9bdc219"
      ]
    }
    

    完整配置项说明请参考小程序全局配置

    页面配置

    每一个小程序页面也可以使用同名 .json 文件来对本页面的窗口表现进行配置,页面中配置项会覆盖 app.jsonwindow 中相同的配置项。

    完整配置项说明请参考小程序页面配置

    例如:

    {
        "backgroundColor": "#F6F6F6",
        "backgroundTextStyle": "light",
        "navigationBarBackgroundColor": "#eeeeee",
        "navigationBarTitleText": "微信小程序开发",
        "navigationBarTextStyle": "black"
    }
    

    相关文章

      网友评论

          本文标题:小程序配置

          本文链接:https://www.haomeiwen.com/subject/mvxzohtx.html