小程序
小游戏
企业微信
微信支付
扫描小程序码分享
部分用户反馈说是点击没有任何任何反映
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
请具体描述问题出现的流程,并提供能复现问题的简单代码片段https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
出现问题的手机扫码提供下扫码结果截图
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
chooseImage: function (e) { var _this = this; //发起uploadfile wx.chooseImage({ count: 1, //最多上传1张 success: function (retFile) { console.log(retFile) var tempFilesSize = retFile.tempFiles[0].size; //获取图片的大小,单位B if (tempFilesSize < 1048576) { var tempFilesPath = retFile.tempFilePaths[0]; //获取图片临时路径 //判断是否是jpg、png格式 app.wxRequest('?m=weixin&c=index&a=uploadSuffix', { path: tempFilesPath }).then( res => { //请求成功 保存临时路径 if (res.code == 1) { _this.setData({ up_img: tempFilesPath, preview: true }); } else { app.showAlert(res.msg) } } ) } else { app.showAlert('上传图片不能大于1MB!'); } } }) },
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
请具体描述问题出现的流程,并提供能复现问题的简单代码片段https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
出现问题的手机扫码提供下扫码结果截图
https://developers.weixin.qq.com/s/jXmBmwme7yfR
有部分用户反映点击上传作品、文件按钮没反应。
chooseImage: function (e) { var _this = this; //发起uploadfile wx.chooseImage({ count: 1, //最多上传1张 success: function (retFile) { console.log(retFile) var tempFilesSize = retFile.tempFiles[0].size; //获取图片的大小,单位B if (tempFilesSize < 1048576) { var tempFilesPath = retFile.tempFilePaths[0]; //获取图片临时路径 //判断是否是jpg、png格式 app.wxRequest('?m=weixin&c=index&a=uploadSuffix', { path: tempFilesPath }).then( res => { //请求成功 保存临时路径 if (res.code == 1) { _this.setData({ up_img: tempFilesPath, preview: true }); } else { app.showAlert(res.msg) } } ) } else { app.showAlert('上传图片不能大于1MB!'); } } }) },