- 小程序支付回调2 次问题
同一笔支付订单,为啥回调了 2 次,且间隔时间将近 8 小时,请问这个是什么问题造成的? [图片]
06-20 - 获取不到腾讯视频问题?
[图片][图片]
2022-08-31 - 集成腾讯视频插件后获取不到视频问题?
[图片] [图片]
2022-08-30 - 支付失败参数详解
wx.requestPayment 支付失败的场景,返回参数结构是啥样的,给我发一个,多谢
2021-12-15 - code2Session 没有返回 errcode?
code2Session 没有返回 errcode 返回结果中只包含了: {"session_key":"yVFX6ltcwWx95Uo0OBIckw==","openid":"o2Wit5B1Z-QIuzmk-62agPkGYGig"}
2021-12-10 - rich-text不能解析视频怎么办?
组件:rich-text 不能解析视频
2021-07-31 - 微信公众号调用扫一扫功能报错:config:invalid signature?
api: wx.scanQRCode 微信版本:8.0.1 jsapi_ticket=HoagFKDcsGMVCIY2vOjf9k3Tt6V7Pq0z2ms_qAb1pTSRZYFrielVF2Iqmqq0kkV5CeE7P5jofZ-WrYWuVpjKQw&noncestr=ff2f19ea-4972-45f8-979a-1bff7d6388e5×tamp=1612262269&url=https://sit.halcyonz.com/ubi-mobile-h5/myCar 签名:2f5d9955e8d3e6dd29a7c437032872f2b005cab5 代码: getJsSdkConfigParam(){ // let signUrl = window.location.href.split('#')[0]; let signUrl = window.location.href alert('signUrl:' + signUrl) let params = { url: signUrl, tenantType: this.$netConfig.ShareCom, } let self = this this.$axios.post(this.$netConfig.restful.wechat.jsSdkConfigParam, params) .then(resp => { console.log("resp ==== ", JSON.stringify(resp)); wx.config({ debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId: resp.appId, // 必填,公众号的唯一标识 timestamp: resp.timestamp, // 必填,生成签名的时间戳 nonceStr: resp.nonceStr, // 必填,生成签名的随机串 signature: resp.signature,// 必填,签名 jsApiList: ['scanQRCode'], // 必填,需要使用的JS接口列表 }) this.checkIsReady().then(()=>{ self.isJSSDKReady = true; console.log("----JSSDKReady----") }).catch((err)=>{ console.log("----JSSDKerror----:"+JSON.stringify(err)) }); wx.checkJsApi({ jsApiList: ['scanQRCode'], // 需要检测的JS接口列表,所有JS接口列表见附录2, success: function(res) { // 以键值对的形式返回,可用的api值true,不可用为false // 如:{"checkResult":{"chooseImage":true},"errMsg":"checkJsApi:ok"} console.log("----JSSDKCheck----:"+JSON.stringify(res)) } }); }) .catch(error => { console.log('error---' + error); }); }, checkIsReady() { return new Promise((resolve, reject) => { wx.ready(() => resolve()); wx.error(err => reject(err)) }) }, [图片][图片]
2021-02-02 - 如何识别打开分享内容的用户还是本人?
1、使用小程序分享一篇文章 2、用户可以点击阅读,评论等 问题:怎么区分点击阅读的用户是本人,还是其他用户?
2020-10-23