是这个原因吗: Bug & Tip [代码]tip[代码]:image组件默认宽度300px、高度225px[代码]tip[代码]:image组件中二维码/小程序码图片不支持长按识别。仅在wx.previewImage中支持长按识别
image标签 show-menu-by-longpress 有时无法识别小程序码菜单?image的内容是由前端 canvas 画出来的,不是远程图片资源 然后image 中的show-menu-by-longpress属性设置程true, 有的时候 无法弹出小程序码菜单 具体表现在01/19日时所有手机均无法长按调起,但是01/20代码未做任何改动的情况下又都可以长按调起 请问是微信官方的问题还是什么原因?@微信官方社区技术人员
2020-01-21本地图片是二维码或者小程序码吗? image组件中二维码/小程序码图片不支持长按识别。仅在wx.previewImage中支持长按识别
image组件 show-menu-by-longpress<image class="er" src="../img/er.jpg" show-menu-by-longpress='1'></image> 图片长按识别,发送给朋友和保存本地失效 vivo nex和vivo y67都无效
2020-01-19看你用的哪个版本
网页分享wx.onMenuShareTimeline等废弃api接口自定义分享内容已经完全没用了吗?wx.onMenuShareAppMessage,wx.onMenuShareTimeline
2020-01-17提交退款申请后,通过调用该接口查询退款状态。退款有一定延时,用零钱支付的退款20分钟内到账,银行卡支付的退款3个工作日后重新查询退款状态。
微信公账号支付退款,一般需要多久到账?如题:微信公账号支付退款,一般需要多久到账?
2020-01-17你那个调用自己的地方有问题,假如第一次符合if条件,你会一直处于pendding状态,出不来,所以什么也打印不出来(因为then没执行), 可以在调用自己的地方加以下代码试试 _this.drawFn().then(res => resolve());
请问这个promise怎么取不到返回值啊?哪位高手救小弟一命,帮我看看drawFn()函数里 promise返回值怎么取不到呢?这是按钮点击时执行的代码,去调用 drawFn()。但在 drawFn().then 里,没法打印 “====压缩完后图片地址”。 有点特别的是drawFn()函数执行时调用了自己。 licence_pic_get(event) { //从本地选多张图片 wx.chooseImage({ count: 9, sizeType: ['compressed'], sourceType: ['album', 'camera'], success: res => { this.pageData.tempFilePath = res.tempFilePaths; this.pageData.compress_tempFilePath = []; this.pageData.index = 0; //调用函数,这里没能进入then打印结果,是为什么呢? this.drawFn().then(res_drawFn => { console.log('====压缩完后图片地址:', res_drawFn) }) } }) }, ///////////////// 下面是调用的函数: drawFn: function () { let _this = this; return new Promise((resolve, reject) => { console.log('第' + _this.pageData.index + '次调用函数'); if (_this.pageData.index < _this.pageData.tempFilePath.length) { ctx.drawImage(_this.pageData.tempFilePath[_this.pageData.index], 0, 0, 100, 100); ctx.draw(false, () => { console.log('第' + _this.pageData.index + '次draw'); wx.canvasToTempFilePath({ width: 100, height: 100, destWidth: 100, destHeight: 100, canvasId: 'compress', success: res_compress => { console.log('第' + _this.pageData.index + '次循环tempFilePath:', res_compress.tempFilePath); _this.pageData.compress_tempFilePath.push(res_compress.tempFilePath); _this.pageData.index++; _this.drawFn(); //调用自己 } }) }) } else { console.log('调用完成compress_tempFilePath:', _this.pageData.compress_tempFilePath); resolve({ compress_tempFilePath: _this.pageData.compress_tempFilePath, }); } }) //promise end }, ///////////////// 下面是打印结果: [图片] 没执行: this.drawFn().then(res_drawFn => { console.log('====压缩完后图片地址:', res_drawFn) })
2020-01-17报错很明显了:that.animation.translate中的that.animation是undefined。 我猜你这里应该是that.data.animation或者直接animation,看你这个animation变量是怎么定义的了
怎么在小程序支付完成后,传递数据给url后台?支付可以正常运行,但是无法传递数据url到后台 button: function(e) { let orderId = Date.now(); wx.cloud.callFunction({ name: "getOpenid" data: { orderid: orderId, totalPrice: 0.1 }, success(res) { console.log("提交成功101", res.result) that.getOpenid(res.result) }, fail(res) { console.log("提交失败101", res) }, complete: function () { var uphone = wx.getStorageSync('uphone'); wx.request({ url: app.globalData.baseUrl + '/buyer/order/create' method: "POST" header: { "Content-Type": "application/x-www-form-urlencoded" }, data: { openid: app.globalData.openid, name: app.globalData.userInfo.nickName phone: uphone, }, success: function (res) { console.log("支付成功10001:", res.data) if (res && res.data && res.data.data) { // 支付方式关闭动画 that.animation.translate(, 285).step(); that.setData({ animationData: that.animation.export() }); that.setData({ maskFlag: true }); wx.setStorageSync('cart', "" wx.switchTab({ url: '../index/index' }) } else { // 支付方式关闭动画 that.animation.translate(, 285).step(); that.setData({ animationData: that.animation.export() }); that.setData({ maskFlag: true }); } } }) } }) }, getOpenid(payData) { //console.log("入口支付成功11", res) wx.requestPayment({ timeStamp: payData.timeStamp, nonceStr: payData.nonceStr, package: payData.package, signType: 'MD5', paySign: payData.paySign, success(res) { console.log("入口支付成功11", res.data) }, fail(res) { console.log("入口支付失败11", res) } }) } [图片] 求大佬
2020-01-15你确信 [pid: 24, num: 1] 是数组????????????
二位数组转字符串?[图片] 不论用什么方法,转出来后都是空的二维数组 [图片] 求解??
2020-01-15先不说能不能添加,这个“校验文件”你能放在qq.com域名的根目录吗
web-view组件能不能将腾讯官方的qq.com域名添加到白名单中去?我们的公众号页面登录模块使用了腾讯官方的TCaptcha验证码服务,这个js会在页面新建一个iframe,该iframe的域名指向qq.com的二级域名,从而导致该页面在小程序web-view组件中打开的时候,会提示非业务域名。(如下图所示) [图片] [图片]
2020-01-14display:flex改成inline-block试试
如何设置button样式?[图片][图片] 想让绿色button的样式为正方形,并且居左,应该怎么处理?
2020-01-14我平常都是刷新一下就好了
公众号缓存问题如何解决,各种加版本号,后无效,清缓存后无效公众号缓存问题如何解决,各种加版本号,后无效,清缓存后无效
2020-01-08