标签: javascript electron
我正在尝试以电子方式(静默)打印BrowserWindow,并且我不希望任何用户交互。但是,即使我将该选项保留为true,它也会显示打印机对话框。
我正在使用Windows 10计算机,我希望电子应用使用我的默认打印机并未经用户同意进行打印。
webContents.print({silent: true}); webContents.print({'silent': true}); // Even this is not working