类:CommandLine
类: CommandLine
操作你的应用所读取的 Chromium 命令行参数
进程: 主进程
此类未从 'electron' 模块导出。它仅作为 Electron API 中其他方法的返回值可用。
以下示例展示了如何检查是否设置了 --disable-gpu 标志。
const { app } = require('electron')
app.commandLine.hasSwitch('disable-gpu')
有关你可以使用的各种标志和开关的更多信息,请查看 命令行开关 文档。
实例方法
commandLine.appendSwitch(switch[, value])
switchstring - 一个命令行开关,没有前导--。valuestring (可选) - 给定开关的值。
将一个开关(带有可选的 value)追加到 Chromium 的命令行。
注意
这不会影响 process.argv。此函数的使用意图是控制 Chromium 的行为。
const { app } = require('electron')
app.commandLine.appendSwitch('remote-debugging-port', '8315')
commandLine.appendArgument(value)
valuestring - 要追加到命令行的参数。
将一个参数追加到 Chromium 的命令行。该参数将被正确引用。开关将优先于参数,无论追加顺序如何。
如果你正在追加一个类似 --switch=value 的参数,请考虑使用 appendSwitch('switch', 'value') 代替。
const { app } = require('electron')
app.commandLine.appendArgument('--enable-experimental-web-platform-features')
注意
这不会影响 process.argv。此函数的使用意图是控制 Chromium 的行为。
commandLine.hasSwitch(switch)
switchstring - 一个命令行开关。
返回 boolean - 是否存在该命令行开关。
const { app } = require('electron')
app.commandLine.appendSwitch('remote-debugging-port', '8315')
const hasPort = app.commandLine.hasSwitch('remote-debugging-port')
console.log(hasPort) // true
commandLine.getSwitchValue(switch)
switchstring - 一个命令行开关。
返回 string - 命令行开关的值。
此函数旨在获取 Chromium 命令行开关。它不适用于应用程序特定的命令行参数。对于后者,请使用 process.argv。
const { app } = require('electron')
app.commandLine.appendSwitch('remote-debugging-port', '8315')
const portValue = app.commandLine.getSwitchValue('remote-debugging-port')
console.log(portValue) // '8315'
注意
当开关不存在或没有值时,它将返回一个空字符串。
commandLine.removeSwitch(switch)
switchstring - 一个命令行开关。
从 Chromium 的命令行中移除指定的开关。
const { app } = require('electron')
app.commandLine.appendSwitch('remote-debugging-port', '8315')
console.log(app.commandLine.hasSwitch('remote-debugging-port')) // true
app.commandLine.removeSwitch('remote-debugging-port')
console.log(app.commandLine.hasSwitch('remote-debugging-port')) // false
注意
这不会影响 process.argv。此函数的使用意图是控制 Chromium 的行为。