- 小程序手机号快速注册组件?
购买这个组件后针对开专票只能选择开纸质发票的行为,真的很无语。1:腾讯这么大的公司还不支持开电子专票?2:纸票寄出要15-20天,手写的?纸票报销真的很麻烦,希望能改进下
2023-09-18 - 微信公众平台推送的消息?
这都不是我的小程序,为什么会给我推这个?微信官方能不能解释下 [图片]
2022-11-29 - 微信公众平台推送的消息?
这都不是我的小程序,为什么会给我推这个?微信官方能不能解释下 [图片]
2022-11-29 - wx.chooseInvoice微信电子发票接口未返回必填字段“校验码”没有返回值?以前是有的
[图片]
2021-12-15 - iphone13pro 连续拍照会页面黑屏?
[图片] 调用wx.chooseImage连续拍照到第4张左右,就会大概率黑屏,如上图
2021-11-22 - 企业微信中iframe打开的页面,需要点击多次返回?
企业微信的自建应用,某个页面使用iframe打开第三方H5,第三方H5页面点击头部返回,安卓正常,ios需要点击两次才能返回到上一个页面;求解
2021-03-11 - wx.chooseImage调用成功后会偶发闪现白屏,然后跳转的页面绑定的事件会失效 ?
const wxChooseImage = function (opt) { return new Promise((resolve, reject) => { wx.chooseImage({ count: opt.count || 9, sizeType: opt.sizeType || ['original', 'compressed'], sourceType: opt.sourceType || ['album', 'camera'], success: (res) => { if (res.errMsg === 'chooseImage:ok') { const errorStatus = filterError(res.tempFiles); if (errorStatus){ resolve({ errcode: 'uploadErr', data: '',description:'微信处理图片失败!' }); }else{ resolve({ errcode: '0000', data: res.tempFiles }); } if (res.tempFiles.length > 0) { resolve({ errcode: '0000', data: res.tempFiles }); } } else { resolve({ errcode: 'err', data: res, description: '选择文件异常,请重试!' }); } }, fail: (errRes) => { let errcode = 'err'; let description = '选择文件出错,请重试!'; if (errRes.errMsg.indexOf('cancel') !== -1) { errcode = 'cancel'; description = '取消选择'; } resolve({ errcode: errcode, description: description }) } }) // wx.onMemoryWarning(function () { // wxShowToast('内存占用过高,及时清理微信缓存'); // }) }) } //调用 blendHandle: async function (type) { const res = await wxChooseImage({ sizeType: ['original'], sourceType: type }); wxShowLoading('处理中'); if (res.errcode === '0000') { //跳转页面前会出现白屏 if (res.data && res.data.length > 0) { wx.setStorageSync('selectedImgs', JSON.stringify(res.data)); setTimeout(()=>{ wxHideLoading(); wx.navigateTo({ url: '../recognizeList/recognizeList' }) },2000) } } else { if (res.errcode == 'uploadErr') { wx.showModal({ title: '温馨提示', content: '正在紧急修复,不便之处敬请谅解。', showCancel: false }) } else { wxShowToast(res.description); } } }
2020-09-03 - 返回上一页并调用上一页的某个方法,部分机型偶发提示该方法undefinded?
const pages = getCurrentPages(); // 当前页 const beforePage = pages[pages.length - 2]; // 前一个页面 wx.navigateBack({ delta: 1, success:()=>{ if (beforePage.updateList){ beforePage.updateList(1); // 执行前一个页面的addTips方法 }else{ log.info('点击完成返回--', beforePage); log.setFilterMsg('混贴') } } }) [图片] [图片]
2020-08-28 - andirod微信版本7.0.13及以上版本调用wx.chooseImage方法有bug
wx.chooseImage({ count: 1, sizeType: ['original'], sourceType: ['album', 'camera'], success(res) { console.log('res---',res); } [图片][图片][图片]})
2020-05-08 - 微信7.0.13安卓手机拍照,相册选择返回的临时文件后缀为unknown?
调用wx.chooseImage,安卓机上临时文件后缀为unknown
2020-04-29