Lnews
Lnews
  • 发布:2022-05-12 16:50
  • 更新:2022-05-13 11:39
  • 阅读:551

uniapp使用rendjs遇到的问题

分类:uni-app

查了一些资料,vue调用rendjs的方法,都是直接绑定到元素上test.click这样,我现在要在onNavigationBarButtonTap这个事件里触发rendjs的方法,要怎么写?

2022-05-12 16:50 负责人:无 分享
已邀请:
日尼玛白嫖狗

日尼玛白嫖狗 - 白嫖狗乘早换行吧

中间挂个桥就行了

  • Lnews (作者)

    感谢回复,要怎么挂呢?有没有代码

    2022-05-12 17:28

Lnews

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

Lnews (作者)

有人知道吗

该问题目前已经被锁定, 无法添加新回复