天天看點

#yyds幹貨盤點#【愚公系列】2022年10月 微信小程式-全局配置屬性之請求逾時時間一、app.json配置屬性之networkTimeout

一、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"
}