Cordova插件打印机崩溃Ionic2应用程序

时间:2017-02-01 08:42:13

标签: printing crash ionic2 cordova-plugins

我正在尝试在应用中测试打印功能。我正在使用katzer / cordova-plugin-printer。 我创建了一个调用打印机的按钮,下面是我写的代码,不确定它是否正确:

print(){
  Printer.isAvailable().then(
    ()=>{
      Printer.print("<h2>This is just a sample!</h2>").then(
        ()=>alert('Printing successfull'),
        ()=>{alert('Unable to print')}
      );
    }, 
    (reason)=>{
      alert('no printer found');
      alert(reason)
    });

}

我正在使用Android手机进行测试

1 个答案:

答案 0 :(得分:1)

您需要使用文档名称来应用printoptions。

Printer.print("<h2>This is just a sample!</h2>", { name: 'testdoc' })