赞
踩
1.方法一 微信转发及分享到朋友圈
shareUrl(this.id).then(response => { // 获取二维码跳转地址
switch (e.item.name) {
case 'wxchum': // 重点是这里
uni.share({
provider: 'weixin',
scene: 'WXSceneSession',
type: 0,
href: response.share_url,
title: this.goods.name,
summary: this.goods.description,
imageUrl: this.goods.pictures[0],
fail(err) {
uni.showToast({
title: err.errMsg,
icon: 'none'
})
}
})
break;
case 'wxcircle':
uni.share({
provider: 'weixin',
scene: 'WXSceneTimeline',
type: 0,
href: response.share_url,
summary: this.goods.description,
imageUrl: this.goods.pictures[0],
fail(err) {
uni.showToast({
title: err.errMsg,
icon: 'none'
})
}
})
break;
case 'download':
this.canSave = true
uni.showLoading({
title: '保存中'
})
this.down()
break;
}
}).catch(err => {
return
})
down() {
setTimeout(() => {
let pages = getCurrentPages();
let page = pages[pages.length - 1];
let ws = page.$getAppWebview();
let bitmap = new plus.nativeObj.Bitmap('drawScreen');
// 将webview内容绘制到Bitmap对象中
ws.draw(bitmap, () => {
// 保存图片到本地
bitmap.save("_doc/drawScreen.jpg", {
overwrite: true
}, res => {
uni.saveImageToPhotosAlbum({ //保存图片到系统相册。
filePath: res.target, //图片文件路径
success: () => {
this.canSave = false;
uni.showToast({
title: '保存图片成功,赶紧去转发给好友吧~',
icon: 'none'
})
},
fail: function(e) {
uni.showModal({
title: '温馨提示',
content: '保存图片失败,重新再试试~',
showCancel: false,
confirmColor: "#34CE98",
confirmText: '知道了',
success: () => {
this.canSave = false;
}
})
uni.hideLoading()
}
});
bitmap.clear(); // 清除Bitmap对象
}, error => {
uni.showModal({
title: '温馨提示',
content: '保存图片失败,重新再试试~',
showCancel: false,
confirmColor: "#34CE98",
confirmText: '知道了',
success: () => {
this.canSave = false;
}
})
uni.hideLoading()
bitmap.clear(); // 清除Bitmap对象
});
// bitmap.clear(); // 清除Bitmap对象
}, error => {
uni.showModal({
title: '温馨提示',
content: '保存图片失败,重新再试试~',
showCancel: false,
confirmColor: "#34CE98",
confirmText: '知道了',
success: () => {
this.canSave = false;
}
})
uni.hideLoading()
}, {
check: true, // 设置为检测白屏
});
}, 2000)
},
在使用uni-app 开发的过程中有没有遇到 无法使用html2canvas生成图片的问题呢?那么通过这篇文章,我们来记录下如何在uniapp生成画布图片的。
首先需要在你的uni-app项目中安装 html2canvas 插件
npm install html2canvas -D
或者
yarn add html2canvas -D
在需要生成图片的页面中引入 html2canvas 插件
不过此时需要在 页面中新建一个 script 节点,将 lang 属性设置为renderjs,代码如下:
<script>
export default {
data() {
return {};
}
};
</script>
// 在这里新增一个 script 节点 用于在页面中使用dom
<script lang="renderjs" module="canvasImage">
import html2canvas from 'html2canvas'
export default {
}
</script>
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。