小程序
小游戏
企业微信
微信支付
扫描小程序码分享
https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html
request的最大超时时间是多少?文档上没写,只有默认60秒,改成五分钟不生效,还是1分钟就中断了,onChunkReceived可能要几分钟才结束,所以希望取消最大超时时间为1分钟的限制
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
https://developers.weixin.qq.com/miniprogram/dev/framework/ability/network.html#:~:text=%E4%B9%9F%E5%8F%AF%E4%BB%A5%E5%9C%A8%E6%8E%A5%E5%8F%A3,%E4%B8%AD%E7%9A%84%E9%85%8D%E7%BD%AE
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
const rt = wx.request({
url: 'host',
data: {
// data
},
header: {
Authorization: 'token'
timeout: 300000,
method: 'POST',
enableChunked: true,
responseType: 'text',
fail: err => {},
success: res => {},
})
rt.onChunkReceived(() => {});
有结果吗?
@官方
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
https://developers.weixin.qq.com/miniprogram/dev/framework/ability/network.html#:~:text=%E4%B9%9F%E5%8F%AF%E4%BB%A5%E5%9C%A8%E6%8E%A5%E5%8F%A3,%E4%B8%AD%E7%9A%84%E9%85%8D%E7%BD%AE
const rt = wx.request({
url: 'host',
data: {
// data
},
header: {
Authorization: 'token'
},
timeout: 300000,
method: 'POST',
enableChunked: true,
responseType: 'text',
fail: err => {},
success: res => {},
})
rt.onChunkReceived(() => {});
有结果吗?
app.json设置方式:
"pages/festival/festival"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTextStyle": "black"
},
"networkTimeout": {
"request": 300000,
"downloadFile": 300000
},
@官方