查了一些资料,vue调用rendjs的方法,都是直接绑定到元素上test.click这样,我现在要在onNavigationBarButtonTap这个事件里触发rendjs的方法,要怎么写?
Lnews
- 发布:2022-05-12 16:50
- 更新:2022-05-13 11:39
- 阅读:551
uniapp使用rendjs遇到的问题
分类:uni-app
Lnews (作者)
<script module="pic" lang="renderjs">
import html2canvas from '@/node_modules/html2canvas'
export default{
methods:{
onClick(event,ownerInstance){
html2canvas(document.getElementById('page'),{
backgroundColor:'white',
useCORS:true,
tainTest:true,
timeout:2000
}).then(canvas=>{
let imgUrl = canvas.toDataURL("image/png")
ownerInstance.callMethod('saveBase64',imgUrl)
})
}
}
}
</script>
//如何在onNavigationBarButtonTap这个里调用onClick这个方法
Lnews (作者)
感谢回复,要怎么挂呢?有没有代码
2022-05-12 17:28