@NorthFred wrote:
Hi,
I’m getting the error “TypeError: path is undefined” in the browser’s developer console when I try to run the following code:
import { Printer, PrintOptions } from '@ionic-native/printer/ngx';
constructor( public viewCtrl: ViewController, public navParams: NavParams, private printer: Printer ) {....
let printerOptions = { name: `Print Job`, printerId: 'GoDEX G500', duplex: false, landscape: true, grayscale: true }; let printContent = "<h1>Hello World!</h1>"; this.printer.print(printContent, printerOptions) .then( () => { console.log("Data sent to printer!"); }) .catch(error => { console.log(error); });
I tried to find out where this “path” is coming from, without success. It does however come from the Printer component, that is for sure.
Does anyone know where this might come from? A search on the mighty interwebz did not result in anything
Posts: 1
Participants: 1