[图片]更新到最新的这个版本官方终于解决了问题👏🏻
mac 微信开发者工具非常卡,是什么情况?小程序是使用uniapp开发的,当使用HBuildex编译到微信小程序后,在微信开发工具上打开好像超级卡。以前还不会,咋感觉越来越卡了,是哪边的问题呢?
10-21请问,解决了吗?
安卓手机用canvasToTempFilePath提示exceed size limit使用canvas2d的方法,安卓手机vivo z5x 红米note8 pro等用canvasToTempFilePath生成图片提示canvasToTempFilePath:fail:convert native buffer parameter fail. native buffer exceed size limit,初步怀疑是宽度设置太大原因,设置了180vw。 <canvas id="canvas" canvas-id="signCanvas" type="2d" binderror="drawError" bindtouchstart="drawStart" bindtouchmove="drawMove" bindtouchend="drawEnd" style="width:{{width}}vw;height:100%;border:1px solid #ddd;margin:auto;margin-left:{{marginLeft}}vw;"> </canvas> data: { marginLeft: 0, width: 180, demoSrc: '', title: '', isShowCanvas: true, // 默认一开始只有一个页面 isOnlyOnePage: true }, init(res) { console.log(res) const width = res[0].width const height = res[0].height const canvas = res[0].node console.log('初始化宽高度', width, height) canvasWidth = width; canvasHeight = height signCanvas = canvas.getContext('2d') canvas.width = width * dpr canvas.height = height * dpr canvasObj = canvas signCanvas.scale(dpr, dpr) signCanvas.lineWidth = 8; signCanvas.lineCap = "round"; signCanvas.strokeStyle = "#222222"; }, // 保存确定 saveSign() { let that = this; let canHeight = 90; let canWidth = this.data.width; if (handData.length) { console.log('canvas宽高', canvasWidth, canvasHeight) console.log('dest图片宽度高度', canWidth, canHeight) wx.canvasToTempFilePath({ x: 0, y: 0, destHeight: canHeight, destWidth: canWidth, canvas: canvasObj, success: function (res) { console.log('res', res) that.setData({ demoSrc: res.tempFilePath }) wx.downloadFile({ url: res.tempFilePath, success: (res) => { console.log(res) }, fail: (err) => { console.log(err) } }) }, fail: function (err) { console.log('生成图片失败', err) if (err && err.errMsg.indexOf('native buffer exceed size limit') >= 0) { util.showModel('生成图片失败', '生成图片过大,请重新进入该页面,减少签名文字大小,降低右移次数') } else if (err && err.errMsg) { util.showModel('生成图片失败', err.errMsg) } else { util.showModel('生成图片失败', '请重新打开页面签名') } } }) } }
2020-06-03有token做验证的请求,肯定是前端要统一封装一个请求,在那里做处理的
多个页面同时向后台服务器请求 token?打开小程序,首先打开 index.js, 在 onReady()中,向服务器请求数据,需要携带 token,检查 token 不存在,向服务器发送请求获取 token。但是在 app.onLaunch()中,也有类似操作,先检查 storage 中是否有 token,如果没有,向服务器发送请求获取 token。这样可能会连续发送两次获取 token 的请求。 大家是怎么处理这个问题呢?
2020-05-24这个使用本地临时路径不生效的话,可以试下在编辑器中,代理设置为:不使用任何代理。 我这边是采用这个办法就可以了。。 默认的设置是使用系统代理[图片]
新的canvas的drawImage不支持本地tmp路径的临时文件吗?【貌似官方修复了这个问题。现在可以了。】 https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.drawImage.html drawImage( )不支持本地tmp路径的临时文件,谨慎使用,太坑了。 写法1. ``` path = 'tmp/wxf65e9ae5f68283d2.o6zAJs5h4IkyHaGS7_j6gUPGTR9c.arwyj04Eq2ok341457e272957e237fa21d743912f60b.jpg' ctx.drawImage(path, 0, 0, width, height, 0, 0, canvasWidth, canvasHeight) ``` 提示:Failed to execute 'drawImage' on 'CanvasRenderingContext2D': The provided value is not of type '(CSSImageValue or HTMLImageElement or SVGImageElement or HTMLVideoElement or HTMLCanvasElement or ImageBitmap or OffscreenCanvas)';at SelectorQuery callback function 写法2. ``` const img = canvas.createImage() img.src = path img.onload = () =>{ ctx.drawImage(img, 0, 0, width, height, 0, 0, canvasWidth, canvasHeight) } ``` 提示:tmp/wxf65e9ae5f68283d2.o6zAJs5h4IkyHaGS7_j6gUPGTR9c.arwyj04Eq2ok341457e272957e237fa21d743912f60b.jpg:1 GET http://tmp/wxf65e9ae5f68283d2.o6zAJs5h4IkyHaGS7_j6gUPGTR9c.arwyj04Eq2ok341457e272957e237fa21d743912f60b.jpg net::ERR_PROXY_CONNECTION_FAILED
2020-05-06在补充个问题。。 在开发者工具上,使用这个api,突然发现这个title没有显出来字了。。。 wx.showLoading({title: '提交中...'})
Mac版 微信开发者工具 的一些问题?[图片] 1、wxml 这里 显示不出来里,需要重启编辑器才行, 但是过了一会后又不行里。。 2、快捷键格式化代码的问题, 已经设置了默认的格式化程序。然后每次按默认的格式化代码的快捷键,都会重新出现这个弹框,很烦。。 [图片] 3、当在编辑器中点击左上角关闭时出现以下这个页面,然后就会出现卡顿,程序无响应的现象,过一会后才能重新有反应。。 不知道是电脑问题还是工具的问题。 [图片] 我的macbook pro 是这个版本,希望官方尽快排查下原因哈。 。 很影响效率😣 [图片]
2020-04-28发现只要微信要退出重新登录一次就行了。。。 坑
你们的微信新消息会经常没有通知提醒吗?现在出现的问题是: 微信客户端是运行的状态 然后有时在手机主桌面或者访问其他软件时会收不到新消息通知提醒(通知栏上也不会显示) 我在 设置-新消息提醒 中通知开关和声音与振动都开启了 允许通知了 不知道是什么问题导致的。。。 今天早上公司远程办公,在群语音时,有个同事他也弹不出来语音的通知,他手机是IPhone7的 希望官方有空排查下这个原因吧
2020-02-07一般正常来说每次进入静默授权页面时只会出现一次,你检查下前端的逻辑,在看下后端的日志有没有异常
微信授权登录时一直刷新正在登录中?一到晚上10点过就这样
2019-12-09你做个模板小程序不就好了么,用户也只需要在后台简单配置就可以使用
弹药不足,请求援助 插件开发能把整个项目做成插件吗?问题背景: 目前开发了一个"在线点读教材的小程序",该功能可以给多个出版社或者有声图书制作团队使用,里面包含了很多功能,目前打算实现类似app插件形式,用户只需要简单的配置,就可以集成整个功能。 不知道小程序的插件能实现这样的需求吗??
2019-11-27自己去写个页面,可以让用户绑定手机号的流程,类似这样的 [图片]
小程序内做会员开卡,怎么拿到会员手机号?帮开发同事问。开卡后,拿不到会员手机号,想问下各位同体仁,你们是怎么拿到的?
2019-11-05因为你不满足下发条件 广告投放时设置了人群定向,系统会为用户匹配当前最适合的广告进行展示,若当前无适合该用户的广告,则不会展示广告位
为什么我的小程序有时候一个广告都没有,包括插屏广告和banner广告?是展示的次数超过限制?
2019-10-18