我正在使用@ionic-native/printer
模块来打印特定区域。
这是打印按钮的代码:
print() {
this.platform.ready().then(success => {
this.printer.check().then(data => {
this.toastCtr.create({
message: data
});
}, error => {
this.toastCtr.create({
message: error,
closeButtonText: 'Ok'
}).present();
});
},
error => {
this.toastCtr.create({
message: error
}).present();
});
}
按钮html:
<button ion-button color="secondary" (click)="print()">PRINT THIS OFFER</button>
该模块已导入app.module.ts
和使用的home.ts
中。
当我点击“打印”按钮时,出现以下错误:
cordova_not_available
但是cordova已经安装。