electron.exe获取命令行参数
2018-07-20 本文已影响133人
丘比特爱上猫
最近做项目的时候,有个需求是通过命令行启动程序,并且获取里面的参数
- 例如:
~/myapp.exe --args name=qiu
- 使用主进程中
process
模块获取失败 - 在渲染进程使用
remote
模块下process
获取成功
const remote = require('electron').remote
alert(remote.process.argv)
最近做项目的时候,有个需求是通过命令行启动程序,并且获取里面的参数
~/myapp.exe --args name=qiu
process
模块获取失败remote
模块下process
获取成功const remote = require('electron').remote
alert(remote.process.argv)