一直用gitBash自己拉然后小程序工具打开
微信开发者工具拉取github上仓库代码时为什么一直在loading?[图片] 账号密码都是正确的,sourcetree也没问题,用开发工具自带的版本管理就一直在转圈,拉不下来代码也提交不了
2020-12-05有图有真像,口说无凭,贴图出来
在微信端搜索我的小程序却显示小程序未授权或授权不足是哪里出问题了?在微信端搜索我的小程序却显示小程序未授权或授权不足是哪里出问题了?
2020-12-05https://developers.weixin.qq.com/community/develop/article/doc/000ce8b5050c78eb1f3b425375b413
不知道如何开发工具?不知道如何开发工具
2020-11-02你的写法有问题吧 ctx.fillText(`经办人:${obj.partyAOperator}`,20,1040); ctx.save(); ctx.beginPath(); let seal = canvas.createImage(); seal.src = '../../resource/image/seal.png'; seal.onload = (res) => { ctx.drawImage(seal,0, 0, 150, 150); } ctx.closePath(); ctx.restore(); ctx.fillText("乙方(电子签名):",20,1080); 我的都没问题受了你方法二的启发
新的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-03-27