sunmiInnerPrinter.printOriginalText('Hello World!');
не работает
import { Component } from '@angular/core';
declare var sunmiInnerPrinter: any;
@Component({
selector: 'app-tab3',
templateUrl: 'tab3.page.html',
styleUrls: ['tab3.page.scss']
})
export class Tab3Page {
constructor() { }
ionViewDidLoad() {
try {
if (JSON.stringify(sunmiInnerPrinter) !== '{}') {
return;
} else {
sunmiInnerPrinter.printOriginalText('Hello World!');
}
// it is safe to use sunmiInnerPrinter here
} catch (err) {
console.log('error: ' + JSON.stringify(err));
}
}
print() {
sunmiInnerPrinter.printOriginalText('Hello World!');
}
}
при нажатии кнопки Я также вызываю функцию печати