VueJS从WebView访问Android Java函数

时间:2018-11-07 07:26:22

标签: android vue.js webview

我尝试使用发现的教程通过webview调用Java函数 如herehere。问题是我在Webview中使用的网站是从VueJS构建的,并且当我将代码放入VueJS时

private async printBill() {
   if(typeof Android !== "undefined" && Android !== null) {
       Android.print();
   }
}

当我尝试构建代码时,VueJS告诉我错误。错误为Cannot find name 'Android'

请给我一些提示,使我可以使VueJS通过webview访问Android java函数

0 个答案:

没有答案