gpt4 book ai didi

angular - 电容器/Ionic4 : BarcodeScanner with plugin_not_installed

转载 作者:太空狗 更新时间:2023-10-29 18:14:42 27 4
gpt4 key购买 nike

我在将 BarcodeScanner 添加到我的 android 构建时遇到问题,错误是plugin_not_installed

应用程序编译没有任何错误,但它在运行时输出错误。我也尝试删除/添加 android 文件夹,但仍然没有成功。

有人知道是什么原因造成的吗?

安装:

npm install --save @ionic-native/barcode-scanner@5.0.0-beta.21

app.module.ts:

从 '@ionic-native/barcode-scanner/ngx' 导入 { BarcodeScanner };

@NgModule({
...

providers: [
...
BarcodeScanner
...
]
...
})

home.ts:

import { BarcodeScanner, BarcodeScannerOptions } from '@ionic-native/barcode-scanner/ngx';

@Component({
...
})
export class HomePage implements OnInit {
private options: BarcodeScannerOptions;

constructor(private barcodeScanner: BarcodeScanner) {}

scan() {
this.options = {
prompt: "Scan your qrcode "
}
this.barcodeScanner.scan(this.options).then((barcodeData) => {
...
}, err => {
console.log("Error occured : " + err);
});
}//func scan

}//class HomePage

======

依赖关系:

k

最佳答案

您刚刚为插件安装了 ionic native wrapper,但还没有安装插件

Cordova

ionic cordova 插件添加 phonegap-plugin-barcodescanner

对于电容器

npm 安装 phonegap-plugin-barcodescanner

关于angular - 电容器/Ionic4 : BarcodeScanner with plugin_not_installed,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53821200/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com