获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
微信海报制作,能不能出一个详细的步骤操作视频?
wxml-to-canvas组件renderToCanvas绘制海报之后怎么把海报关掉啊?renderToCanvas() { const wxml = getWxml(this.data.info);//获取template const style = getStyle(this.data.info)//获取canvas const p1 = this.widget.renderToCanvas({ wxml, style }) p1.then((res) => { this.container = res this.extraImage() }) }, extraImage() { const p2 = this.widget.canvasToTempFilePath() p2.then(res => { this.setData({ src: res.tempFilePath, width: this.container.layoutBox.width, height: this.container.layoutBox.height }) }) }, 只有这两个方法没看到有关闭海报的方法
05-30