首页 > 代码库 > Electron 调用系统Office软件

Electron 调用系统Office软件

通过打开本地空白文件的方式从而打开Office办公软件

const shell = require(‘electron‘).shell;
const path = require(‘path‘);
shell.openItem(path.join(__dirname, ‘new.docx‘));

 

Electron 调用系统Office软件