- 微信公众号jssdk ios第一次签名失败,刷新后签名成功,怎么解决?
wx.config({ debug: true, // 开启调试模式,调用的所有 api 的返回值会在客户端 alert 出来,若要查看传入的参数,可以在 pc 端打开,参数信息会通过 log 打出,仅在 pc 端时才会打印。 appId: data.appId, // 必填,公众号的唯一标识 timestamp: data.timestamp, // 必填,生成签名的时间戳 nonceStr: data.nonceStr, // 必填,生成签名的随机串 signature: data.signature, // 必填,签名 jsApiList: ["updateAppMessageShareData", "updateTimelineShareData"], // 必填,需要使用的 JS 接口列表 }); // eslint-disable-next-line no-undef wx.ready(function () { //需在用户可能点击分享按钮前就先调用 // eslint-disable-next-line no-undef wx.updateAppMessageShareData({ title: "", // 分享标题 desc:"", // 分享描述 link: "", // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致 imgUrl: imgurl, // 分享图标 success: function () { // 设置成功 }, error: function () {}, });
08-01 - 微信小程序缓存问题
缓存里没有数据wx.getStorageInfoSync().currentSize结果是1,current size已经为0B了[图片]
01-12