Tencent / wepy

小程序组件化开发框架
https://wepyjs.gitee.io/wepy-docs/
Other
22.54k stars 3.05k forks source link

wepy.request, 可以设置超时吗?app.wepy中设置networkTimeout为:15000不生效 #1960

Open littleQing opened 5 years ago

littleQing commented 5 years ago

config = { pages: [ 'pages/index', 'pages/details/details', 'pages/subpage/poster' ], window: { navigationBarBackgroundColor: '#fff', navigationBarTextStyle: 'black', navigationStyle: 'custom', networkTimeout: { 'request': 15000 } },

byq1213 commented 5 years ago

大兄弟仔细看微信官方的文档吧

微信小程序-文档-全局配置

  config = {
    // debug:true,
    networkTimeout: {
      request: 20000,
      downloadFile: 10000
    },
}
littleQing commented 5 years ago

大兄弟仔细看微信官方的文档吧

微信小程序-文档-全局配置

  config = {
    // debug:true,
    networkTimeout: {
      request: 20000,
      downloadFile: 10000
    },
}

大兄弟有在app.js全部配置有设置超时,但是没有只能等60秒 是否是因为wepy.requst中没有对complete回调做处理导致的呢? 原生wx.request可以在complete回调中根据参数处理超时。

byq1213 commented 5 years ago

网络 · 小程序 2. 关于请求