- 发送客服消息给新用户45047
- 当前 Bug 的表现(可附上截图) 新打开的客户会话,后台检测直接发送消息给客户。接口返回45047 :{"errcode":45047,"errmsg":"out of response count limit hint: [aGrhHA07173937]"} [图片] - 预期表现 - 复现路径 - 提供一个最简复现 Demo
2019-06-20 - 红米Note5 微信小程序 wx.uploadFile 上传图片报错
红米Note5 微信小程序 微信wx.uploadFile 上传图片报错:{errMsg: "uploadFile:fail socket timeout error"} 在其他机器上,比如:华为,苹果,微信开发工具上都好用。 [图片] [图片] 另外,苹果手机小程序页面文本框多的情况下,滚动超过一页的时候,提交发现,之前填过内容的文本框会提示需要填写内容。
2018-07-13 - 开发工具 校验请求域名,提示“合法域名校验出错”
相关截图 [图片] [图片]
2017-08-23 - 急:上传多媒体文件出错
使用模拟器上传视频文件提示errMsg: "uploadFile:fail file not found" [图片] 使用苹果手机上传视频文件提示errMsg:"uploadFile:fail file path invalid" [图片] 程序代码 that.upload({ path: 视频选择得到的路径}); upload: function (path) { wx.uploadFile({ url: 'https://.../upload', //上传地址 filePath: path+'', //视频路径 name: 'video', header: { 'content-type': 'multipart/form-data' }, formData:null, success: function (res) { // success console.log("成功") console.log(res.data) }, fail: function (res) { // fail console.log("失败", res) }, complete: function () { // complete console.log("完成") } }) }
2017-07-07