我正在研究使用Vue +电子Js的打印系统的应用程序。 我将分享以下代码。我可以轻松使用默认打印机进行打印。但是,当我指定名称时,打印机不起作用。您能提出解决方案吗? 我尝试直接指定打印机名称。
这很好用!
ipcMain.on("adisyon-print", function(event, device) {
let deviceName = device;
win.webContents.print({
silent: true,
printBackground: false,
margins: { top: 5, left: 5, right: 5, bottom: 5 },
});
});
这不起作用。
ipcMain.on("adisyon-print", function(event, device) {
let deviceName = device;
win.webContents.print({
deviceName: deviceName,
silent: true,
printBackground: false,
margins: { top: 5, left: 5, right: 5, bottom: 5 },
});
});