最近做项目的时候,有个需求是通过命令行启动程序,并且获取里面的参数
- 例如:
~/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)
本文标题:electron.exe获取命令行参数
本文链接:https://www.haomeiwen.com/subject/bkvfmftx.html
网友评论