我正在尝试在应用中测试打印功能。我正在使用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手机进行测试
答案 0 :(得分:1)
您需要使用文档名称来应用printoptions。
Printer.print("<h2>This is just a sample!</h2>", { name: 'testdoc' })