我正在使用该@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已经安装好了。