微信小程序json页面写些什么 微信小程序json是什么

主机教程 建站分享 2年前 (2022-11-15) 183次浏览

文章摘要:微信小程序json页面写些什么 微信小程序json是什么

微信小程序json页面用来对微信小程序进行全局配置,决定页面文件的路径、窗口表现、设置网络超时时间、设置多 t […]

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

{

  "pages": [

    "pages/index/index",

    "pages/logs/logs",

    "pages/demo/demo"

  ],

  "window": {

    "backgroundTextStyle": "light",

    "navigationBarBackgroundColor": "#fff",

    "navigationBarTitleText": "WeChat",

    "navigationBarTextStyle": "black"

  },

  "tarBar": {

    "list": [{

      "pagePath":"pages/index/index",

      "text": "首页"

    },{

      "pagePath": "pages/logs/logs",

      "text": "日志"

    },{

      "pagePath": "pages/demo/demo",

      "text": "demo"

    }]

  },

  "networkTimeout": {

    "request": 20000,

    "connectSocket": 20000,

    "uploadFile": 20000,

    "downloadFile": 20000

  },

  "debug":true

}


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:微信小程序json页面写些什么 微信小程序json是什么
文章链接:http://www.7966.org/post/17457.html
转载请注明出处

喜欢 (0)