- wx.uploadFile调用怎么突然不行了?
直接上代码(关键是同样的代码,前天之前还一切正常) // 上传文件 wx.uploadFile({ url: app.globalData.g_conversionServer + 'uploadFile.php', // 此地址为保密做一点修饰 filePath: curFile.path, name: "file", formData: { openid: user._openid, fileName: curFile.name }, success: function (res) { console.log("pushFile.res=", res); // 此处的业务代码被我拿掉了 }, fail: function (err) { console.error("wx.uploadFile.err=", err); wx.showModal({ title: app.globalData.APP_MSG_TITLE, content: '有异常:' + err.errMsg + ',请稍等', confirmColor: app.globalData.CONFIRM_COLOR, showCancel: false, success: function (res) { if (res.confirm) { return; } } }) }, complete: res => { // 加载完成 // 后续处理代码被我拿掉了 } }); 选择文件后,出现长时间等待,最后的错误如下: errMsg: "uploadFile:fail upload fail:-101:net::ERR_CONNECTION_RESET" 令人不解的地方是: 1、开发环境中,上传正常(wx4a64fa8604591648)。但在真机和体验版本时异常。 2、我在另外的小程序(wxa563b23efa409007)中,采用几乎相同的处理逻辑,目前为止是正常的。 采用过的对策: 1、重启服务器,2、重启开发工具,3、切换到移动网络 最终结果还是没有正常,特急之贴!!!
2022-02-06 - 在iOS设备中调用 wx.uploadFile 调用报错?
在我的iOS设备上调用wx.uploadFile接口报以下错误: "MiniProgramError\nr.replace is not a function. (In 'r.replace(/\;([^\s\;]*?(?=\=))/gi,",$1")', 'r.replace' is undefined)\nTypeError: r.replace is not a function. (In 'r.replace(/\;([^\s\;]*?(?=\=))/gi,",$1")', 'r.replace' is undefined)\nat replace (miniprogram_npm/weapp-cookie/index.js:2414:45)\nat (WAServiceMainContext.js:1:2473449)\nat YX (WAServiceMainContext.js:1:2258626)\nat success (WAServiceMainContext.js:1:2260733)\nat <api uploadFile success callback function>\nat c (WAServiceMainContext.js:1:801289)\nat (WAServiceMainContext.js:1:616788)\nat <NetworkUpload1success callback function>\nat (WAServiceMainContext.js:1:746326)\nat forEach (native code)\nat emit (WAServiceMainContext.js:1:746249)\nat W (WAServiceMainContext.js:1:617843)\nat (WAServiceMainContext.js:1:619289)\nat (WAServiceMainContext.js:1:781469)\nat emit (WAServiceMainContext.js:1:81766)\nat (WAServiceMainContext.js:1:84248)\nat emit (WAServiceMainContext.js:1:81389)\nat subscribeHandler (WAServiceMainContext.js:1:83949)\nglobal code" 设备:iPhone Xs 14.8 [图片][图片]
2022-08-15 - 为什么小程序在ios打开webview内嵌的h5和微信浏览器打开的h5中storage共用了?
为什么小程序ios端打开webview内嵌的h5和微信浏览器直接打开的h5的localStorage共用同一个? 为什么两个不同的小程序webview内嵌的h5的localStorage也共用?
2021-06-22