- 苹果,小程序开放工具最新版本,不全屏不行?
1、开发者工具,不全屏模式下,模拟器、编辑器都无法向下拉,有些页面文件和资源管理器下的文件不下拉都显示不出来啊 2、开发者工具,模拟器,不全屏模式下,各种页面元素的定位表现和全屏模式下完全不一样,跟真机预览也不一样。
2020-12-03 - 物流助手,云函数消息推送,没有add_express_path这个时间类型可以选择?
https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/express/by-business/logistics.onPathUpdate.html [图片] 文档中描述的物流轨迹推送如何配置
2020-11-04 - API v3 回调通知,nodejs验证签名失败?
async function verifySignature(signature, body, nonce, timestamp) { // 构建响应体中待签名数据 let buildSignMessage = timestamp .concat('\n') .concat(nonce) .concat('\n') .concat(body) .concat('\n') console.log('---buildSignMessage:',buildSignMessage) return crypto.createVerify('RSA-SHA256') .update(Buffer.from(buildSignMessage),'utf8') .verify(public_key, Buffer.from(signature, 'base64')) // .verify(public_key, signature, 'base64') }
2020-10-25 - 企业微信3.0.30版本更新后,安卓sendChatMessage图片不显示
1、安卓以前工作的好好的,没有改任何东西,企业微信自动升级后,sendChatMessage图片显示不了 2、ios以前就一直显示不了,这次去突然能显示了
2020-09-04 - wx.qy.sendChatMessage is not a function?
1、微信开发者工具,其他企业微信的专有接口wx.qy.getCurExternalContact表现正常,能取到外部联系人id 2、微信开发者工具,但是同样的地方调用wx.qy.sendChatMessage,却报编译错误 wx.qy.sendChatMessage is not a function 3、真机测试,IOS返回errCode -100,android、pc端正常
2020-08-04 - 企业微信小程序1.03.2006090 编译报错,BUG?
wx.qy.checkSession VM767:1 thirdScriptError Cannot read property 'checkSession' of undefined;at "pages/corp/index" page lifeCycleMethod onLoad function TypeError: Cannot read property 'checkSession' of undefined 安装新版本之前没有问题,现在还找不到老版本了
2020-08-04 - wx.qy.sendChatMessage 返回 errCode:-100,这个错误码文档里没有?
wx.qy.checkSession({ success: function () { wx.qy.sendChatMessage({ msgtype:"miniprogram", //消息类型,必填 miniprogram: { appid: app.globalData.appid,//小程序的appid title: "支付", //小程序消息的title imgUrl:"/corp/payment.jpeg",//小程序消息的封面图 page:"/index/pay.html", //小程序消息打开后的路径,注意要以.html作为后缀,否则在微信端打开会提示找不到页面 }, success: function(res) { that.logInfo('---send message success:',res) }, fail:function(err){ that.logInfo('---send message fail:',err,err.errMsg) } }); } })
2020-08-03 - 新建小程序无法选择已有云环境?
1、已有云环境ID:mysql-connect-nz4lr 2、新建一个小程序项目,无法复用以前的云环境,只能新建一个云环境? 3、按照论坛帖子里面说的默认新建了一个云环境ID:mask-67a2f 4、结果在云函数根目录上--更多设置,里面还是只有一个 默认创建的mask可以选择,修改了app.js 也没有用 这个论坛上传图片一直报错,参见下面的链接: https://developers.weixin.qq.com/community/develop/worksheet/1362005351394099200/wx38a950c21608e523?envid=mask-67a2f&idescene=4
2020-05-30 - 小程序体验版首页接收不到参数,Bug
1、本机没有任何问题,上小程序体验版,A第一次打开确实没有参数;分享给朋友B,我怕拼错了专门写死了a=123分享的URL ,A的options和分享给B的链接,日志如下, [图片] 2、朋友点击分享链接(第二个openid),结果onload里面直接用微信的log.info()打印options,也是空 [图片]
2020-05-06 - 云函数 fs.openSync permission denied ?
let privateKey = fs.readFileSync('./apiclient_key.pem').toString('ascii'); 云函数里,本地调试没有任何问题,上传后远端调试就报下面的错,我到服务端看文件都传上去了啊,应该是上面这句读取私钥文件报错 Error: EACCES: permission denied, open './apiclient_key.pem' at Object.fs.openSync (fs.js:646:18) at Object.fs.readFileSync (fs.js:551:33) at app.router (/var/user/index.js:505:27) at dispatch (/var/user/node_modules/tcb-router/src/index.js:167:40) at /var/user/node_modules/tcb-router/src/index.js:142:16 at Promise (/var/user/node_modules/tcb-router/src/index.js:106:17) at new Promise (<anonymous>) at TcbRouter.serve (/var/user/node_modules/tcb-router/src/index.js:105:20) at EventHandler.exports.main [as realHandler] (/var/user/index.js:529:14) at EventHandler.handle (/var/runtime/node8/bootstrap.js:402:28) at invoke (/var/runtime/node8/bootstrap.js:205:22) at Timeout.setTimeout [as _onTimeout] (/var/runtime/node8/bootstrap.js:137:9) at ontimeout (timers.js:475:11) at tryOnTimeout (timers.js:310:5) at Timer.listOnTimeout (timers.js:270:5)
2020-05-05