写点什么

【愚公系列】2022 年 11 月 微信小程序 -app.json 配置属性之 networkTimeout

作者:愚公搬代码
  • 2022-11-11
    福建
  • 本文字数:845 字

    阅读完需:约 3 分钟

一、app.json 配置属性之 networkTimeout

全局设置各类网络请求的超时时间,单位均为毫秒。


属性 |类型| 必填| 默认值 |说明

-------- | -----| -----| -----| -----

request |number |否 |60000 |wx.request 的超时时间,单位:毫秒。

connectSocket |number |否 |60000 |wx.connectSocket 的超时时间,单位:毫秒。

uploadFile |number |否 |60000 |wx.uploadFile 的超时时间,单位:毫秒。

downloadFile |number |否 |60000 |wx.downloadFile 的超时时间,单位:毫秒。

配置案例如下:


{  "entryPagePath": "pages/index/index",  "pages": [    "pages/index/index",    "pages/getOpenId/index",    "pages/getMiniProgramCode/index",    "pages/deployService/index",    "pages/createCollection/index",    "pages/uploadFile/index",    "pages/selectRecord/index",    "pages/updateRecord/index",    "pages/updateRecordResult/index",    "pages/updateRecordSuccess/index",    "pages/sumRecord/index",    "pages/sumRecordResult/index"  ],  "window": {    "backgroundColor": "#F6F6F6",    "backgroundTextStyle": "light",    "navigationBarBackgroundColor": "#F6F6F6",    "navigationBarTitleText": "云开发 QuickStart",    "navigationBarTextStyle": "black"  },  "tabBar": {    "list": [      {        "pagePath": "pages/index/index",        "text": "首页"      },      {        "pagePath": "pages/getOpenId/index",        "text": "看资讯"      },      {        "pagePath": "pages/getMiniProgramCode/index",        "text": "我的"      }    ],    "backgroundColor": "#fff",    "color": "#000",    "selectedColor": "#0286f1"  },  "networkTimeout": {    "request": 10000,    "downloadFile": 10000,    "connectSocket": 10000,    "uploadFile": 10000  },  "sitemapLocation": "sitemap.json",  "style": "v2"}
复制代码



发布于: 刚刚阅读数: 4
用户头像

还未添加个人签名 2022-03-01 加入

该博客包括:.NET、Java、前端、IOS、Android、鸿蒙、Linux、物联网、网络安全、python、大数据等相关使用及进阶知识。查看博客过程中,如有任何问题,皆可随时沟通。

评论

发布
暂无评论
【愚公系列】2022年11月 微信小程序-app.json配置属性之networkTimeout_11月月更_愚公搬代码_InfoQ写作社区