微信小程序实现SSE功能,调用wx.request后,部分手机返回request fail {"errno": 600001, "errMsg": "request:fail errcode:10007 cronet_error_code:0 error_msg:"}
这是代码片段
this.requestTask = wx.request({
url: this.options.url,
method: 'GET',
header: headers,
responseType: 'arraybuffer',
timeout: 0, // 长连接不设置超时
enableChunked: true, // 开启分块传输
success: (res) => {
this.log('SSE request success', res);
this.handleClose();
},
fail: (err) => {
this.log('SSE request fail', err);
this.emit('error', err);
this.handleClose(true);
}
});
求解决

你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)