不是,和这个没关系,这是你们自己业务逻辑
使用公众号的网页授权接口.用户好像每30填就需要重新进行一次完整授权问题我们网站已经使用网页授权接口完成了网站的用户扫码登录功能, 但发现 用户扫码进行了完整授权后 的30天左右 扫码会再次要求进行完整授权? 但是其他网站好像并没有这个现象?是因为没有对接 此文档: https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/Wechat_webpage_authorization.html 中的 第三步:刷新access_token(如果需要)造成的影响么?
2024-03-14[图片]
小程序配置我在页面的index.json中配置了homeButton属性,没有生效,无论设置为true还是false,都不起作用
2024-03-14这是微信已知bug,截止目前尚未修复
picker组件弹窗打开时,切回其他页面弹窗不关闭?[图片]
2024-03-14看样子是跳过去了,弹框是小程序自己的业务逻辑
小程序开发版跳转其他小程序正式版时报错?wx.navigateToMiniProgram({ appId: 'xxxxx', path: 'xxxx' extraData: {}, envVersion: 'release', //打开版本 开发版 develop;体验版trial;正式版release success(res) { // 打开成功 }, fail(res){ //打开失败 } }) 使用上面的方法从开发版小程序跳转其他小程序正式版报错下图的错 [图片]
2024-03-14地址变了,刷新一下就可以了。问题存在至少有一年了
微信官方文档(小程序)的框架、组件、API这几个板块点击链接无效!微信官方文档(小程序)的框架、组件、API这几个板块点击链接无效! 这个问题都很久了,难道现在没人看开发文档了吗? 这三个链接点击无效,以及左侧所有连接点击都无效,。,。这么影响看文档的bug都不修复了吗? [图片]
2024-03-14h5的地址本来就无法完全隐藏
使用微信sdk禁用分享网址时,在微信游览器历史记录可以查看到网址。以下是代码详情 [图片] 然后看页面效果 ,复制链接和分享已经被成功屏蔽了 [图片] 但是,我们在pc端游览器上有个游览记录,正常看着没问题 ,但是当我们把 鼠标放在当前项的时候,描述会把隐藏复制网址的网页整个网址展示出来,这样是不是和隐藏复制网址的功能出现了分歧,别人既然隐藏复制链接就是不想让别人知道网址,这算不算BUG。 [图片]
2024-03-14这是ios已知问题,预计下个版本解决
小程序画布 在iphone15promax上不能画出连续的线https://developers.weixin.qq.com/miniprogram/dev/api/canvas/Canvas.html [图片] iphone15promax不能画出连续的线,只能一段一段的。 [图片]iphone13 可以画出连续的线。 代码如下: //wxml <canvas canvas-id="signCanvas" class="canvasStyle" bindtouchstart="onTouchStart" bindtouchmove="onTouchMove" bindtouchend="onTouchEnd"></canvas> //script Page({ startX: 0, // Starting X coordinate startY: 0, // Starting Y coordinate isDrawing: false, // Flag to check if drawing is happening ctx: null, // Canvas context onLoad: function() { this.ctx = wx.createCanvasContext('signCanvas', this); }, onTouchStart: function(e) { this.isDrawing = true; this.startX = e.touches[0].x; this.startY = e.touches[0].y; }, onTouchMove: function(e) { if (!this.isDrawing) return; let x = e.touches[0].x; let y = e.touches[0].y; this.ctx.moveTo(this.startX, this.startY); this.ctx.lineTo(x, y); this.ctx.stroke(); this.startX = x; this.startY = y; this.ctx.draw(true); // Add true to keep drawing on the same canvas without clearing previous content }, onTouchEnd: function(e) { this.isDrawing = false; }, clearCanvas: function() { this.ctx.clearRect(0, 0, 300, 200); this.ctx.draw(); }, saveCanvas: function() { wx.canvasToTempFilePath({ canvasId: 'signCanvas', success: function(res) { // res.tempFilePath is the temporary file path of the canvas image console.log(res.tempFilePath); // You can save this path or upload the image as needed } }, this); } }); //css .canvasStyle { border: 1px solid #000; /* Basic border for visibility */ width: 300px; /* Width of the canvas */ height: 200px; /* Height of the canvas */ }
2024-03-14小程序、网站、app备案都是分开的
小程序备案不能用网站备案号吗?小程序备案不能直接用网站备案号吗?搞这么复杂。一个东西搞好几套玩意。
2024-03-14跳网页需要加白名单,否则无法跳无法下载
可以在小程序中使用web-view组件来加载外部网页,然后在这个外部网页下载文件吗?是需要跳转到一个外部的平台,通过请求他的地址下载类似pdf等文件
2024-03-14这个api废弃一年半了,
点了登录获取不到真实的用户信息,我也用了getuserprofile了,大家有没有看出问题的求大佬?[图片] [图片] [图片] [图片]
2024-03-14