15 KiB
app
app
模块是为了控制整个应用的生命周期设计的。
下面的这个例子将会展示如何在最后一个窗口被关闭时退出应用:
var app = require('app');
app.on('window-all-closed', function() {
app.quit();
});
事件
app
对象会触发以下的事件:
事件: 'will-finish-launching'
当应用程序完成基础的启动的时候被触发。在 Windows 和 Linux 中,
will-finish-launching
事件与 ready
事件是相同的; 在 OS X 中,
这个时间相当于 NSApplication
中的 applicationWillFinishLaunching
提示。
你应该经常在这里为 open-file
和 open-url
设置监听器,并启动崩溃报告和自动更新。
在大多数的情况下,你应该只在 ready
事件处理器中完成所有的业务。
事件: 'ready'
当 Electron 完成初始化时被触发。
事件: 'window-all-closed'
当所有的窗口都被关闭时触发。
这个时间仅在应用还没有退出时才能触发。 如果用户按下了 Cmd + Q
,
或者开发者调用了 app.quit()
,Electron 将会先尝试关闭所有的窗口再触发 will-quit
事件,
在这种情况下 window-all-closed
不会被触发。
事件: 'before-quit'
返回:
event
事件
在应用程序开始关闭它的窗口的时候被触发。
调用 event.preventDefault()
将会阻止终止应用程序的默认行为。
事件: 'will-quit'
返回:
event
事件
当所有的窗口已经被关闭,应用即将退出时被触发。
调用 event.preventDefault()
将会阻止终止应用程序的默认行为。
你可以在 window-all-closed
事件的描述中看到 will-quit
事件
和 window-all-closed
事件的区别。
事件: 'quit'
返回:
event
事件exitCode
整数
当应用程序正在退出时触发。
事件: 'open-file' OS X
返回:
event
事件path
字符串
当用户想要在应用中打开一个文件时触发。open-file
事件常常在应用已经打开并且系统想要再次使用应用打开文件时被触发。
open-file
也会在一个文件被拖入 dock 且应用还没有运行的时候被触发。
请确认在应用启动的时候(甚至在 ready
事件被触发前)就对 open-file
事件进行监听,以处理这种情况。
如果你想处理这个事件,你应该调用 event.preventDefault()
。
在 Windows系统中, 你需要通过解析 process.argv 来获取文件路径。
事件: 'open-url' OS X
返回:
event
事件url
字符串
当用户想要在应用中打开一个url的时候被触发。URL格式必须要提前标识才能被你的应用打开。
如果你想处理这个事件,你应该调用 event.preventDefault()
。
事件: 'activate' OS X
返回:
event
事件hasVisibleWindows
布尔值
当应用被激活时触发,常用于点击应用的 dock 图标的时候。
事件: 'browser-window-blur'
返回:
event
事件window
浏览器窗口
当一个 浏览器窗口 失去焦点的时候触发。
事件: 'browser-window-focus'
返回:
event
事件window
浏览器窗口
当一个 浏览器窗口 获得焦点的时候触发。
事件: 'browser-window-created'
返回:
event
事件window
浏览器窗口
当一个 浏览器窗口 被创建的时候触发。
事件: 'certificate-error'
返回:
event
事件webContents
web组件url
字符串certificateList
对象data
PEM 编码数据issuerName
发行者的公有名称
callback
函数
Emitted when failed to verify the certificate
for url
, to trust the
certificate you should prevent the default behavior with
event.preventDefault()
and call callback(true)
.
session.on('certificate-error', function(event, webContents, url, error, certificate, callback) {
if (url == "https://github.com") {
// Verification logic.
event.preventDefault();
callback(true);
} else {
callback(false);
}
});
事件: 'select-client-certificate'
返回:
event
事件webContents
web组件url
字符串certificateList
对象data
PEM 编码数据issuerName
发行者的公有名称
callback
函数
当一个客户端认证被请求的时候被触发。
The url
corresponds to the navigation entry requesting the client certificate
and callback
needs to be called with an entry filtered from the list.
Using event.preventDefault()
prevents the application from using the first
certificate from the store.
app.on('select-certificate', function(event, host, url, list, callback) {
event.preventDefault();
callback(list[0]);
})
Event: 'login'
Returns:
event
EventwebContents
Web组件request
Objectmethod
Stringurl
URLreferrer
URL
authInfo
ObjectisProxy
Booleanscheme
Stringhost
Stringport
Integerrealm
String
callback
Function
当 webContents
要做验证时被触发。
The default behavior is to cancel all authentications, to override this you
should prevent the default behavior with event.preventDefault()
and call
callback(username, password)
with the credentials.
app.on('login', function(event, webContents, request, authInfo, callback) {
event.preventDefault();
callback('username', 'secret');
})
事件: 'gpu-process-crashed'
当GPU进程崩溃时触发。
方法
app
对象拥有以下的方法:
提示: 有的方法只能用于特定的操作系统。
app.quit()
试图关掉所有的窗口。before-quit
事件将会被最先触发。如果所有的窗口都被成功关闭了,
will-quit
事件将会被触发,默认下应用将会被关闭。
这个方法保证了所有的 beforeunload
和 unload
事件处理器被正确执行。会存在一个窗口被 beforeunload
事件处理器返回 false
取消退出的可能性。
app.hide()
OS X
隐藏所有的应用窗口,不是最小化.
app.show()
OS X
隐藏后重新显示所有的窗口,不会自动选中他们。
app.exit(exitCode)
exitCode
整数
带着exitCode
退出应用.
所有的窗口会被立刻关闭,不会询问用户。before-quit
和 will-quit
这2个事件不会被触发
app.getAppPath()
返回当前应用所在的文件路径。
app.getPath(name)
name
字符串
返回一个与 name
参数相关的特殊文件夹或文件路径。当失败时抛出一个 Error
。
你可以通过名称请求以下的路径:
home
用户的 home 文件夹。appData
所有用户的应用数据文件夹,默认对应:%APPDATA%
Windows 中$XDG_CONFIG_HOME
or~/.config
Linux 中~/Library/Application Support
OS X 中
userData
储存你应用程序设置文件的文件夹,默认是appData
文件夹附加应用的名称。temp
临时文件夹。exe
当前的可执行文件module
libchromiumcontent
库.desktop
当前用户的桌面文件夹。documents
"我的文件夹"的路径.downloads
用户下载目录的路径.music
用户音乐目录的路径.pictures
用户图片目录的路径.videos
用户视频目录的路径.
app.setPath(name, path)
name
字符串path
字符串
重写 path
参数到一个特别的文件夹或者是一个和 name
参数有关系的文件。
如果这个路径指向的文件夹不存在,这个文件夹将会被这个方法创建。
如果错误则抛出 Error
。
你只可以指向 app.getPath
中定义过 name
的路径。
默认情况下,网页的 cookie 和缓存都会储存在 userData
文件夹。
如果你想要改变这个位置,你需要在 app
模块中的 ready
事件被触发之前重写 userData
的路径。
app.getVersion()
返回加载应用程序的版本。如果应用程序的 package.json
文件中没有写版本号,
将会返回当前包或者可执行文件的版本。
app.getName()
返回当前应用程序的 package.json
文件中的名称。
通常 name
字段是一个短的小写字符串,其命名规则按照 npm 中的模块命名规则。你应该单独列举一个
productName
字段,用于表示你的应用程序的完整名称,这个名称将会被 Electron 优先采用。
app.getLocale()
返回当前应用程序的语言种类。
app.addRecentDocument(path)
OS X Windows
path
字符串
为最近访问的文档列表中添加 path
。
这个列表由操作系统进行管理。在 Windows 中您可以通过任务条进行访问,在 OS X 中你可以通过dock 菜单进行访问。
app.clearRecentDocuments()
OS X Windows
清除最近访问的文档列表。
app.setUserTasks(tasks)
Windows
tasks
由Task
对象构成的数组
将 tasks
添加到 Windows 中 JumpList 功能的 Tasks 分类中。
tasks
中的 Task
对象格式如下:
Task
对象
program
字符串 - 执行程序的路径,通常你应该说明当前程序的路径为process.execPath
字段。arguments
字符串 - 当program
执行时的命令行参数。title
字符串 - JumpList 中显示的标题。description
字符串 - 对这个任务的描述。iconPath
字符串 - JumpList 中显示的 icon 的绝对路径,可以是一个任意包含一个icon的资源文件。你通常可以通过指明process.execPath
来显示程序中的icon。iconIndex
整数 - icon文件中的icon目录。如果一个icon文件包括了两个或多个icon,就需要设置这个值以确定icon。如果一个文件仅包含一个icon,那么这个值为0。
app.allowNTLMCredentialsForAllDomains(allow)
allow
Boolean
Dynamically sets whether to always send credentials for HTTP NTLM or Negotiate authentication - normally, Electron will only send NTLM/Kerberos credentials for URLs that fall under "Local Intranet" sites (i.e. are in the same domain as you). However, this detection often fails when corporate networks are badly configured, so this lets you co-opt this behavior and enable it for all URLs.
app.makeSingleInstance(callback)
callback
Function
This method makes your application a Single Instance Application - instead of allowing multiple instances of your app to run, this will ensure that only a single instance of your app is running, and other instances signal this instance and exit.
callback
will be called with callback(argv, workingDirectory)
when a second
instance has been executed. argv
is an Array of the second instance's command
line arguments, and workingDirectory
is its current working directory. Usually
applications respond to this by making their primary window focused and
non-minimized.
The callback
is guaranteed to be executed after the ready
event of app
gets emitted.
This method returns false
if your process is the primary instance of the
application and your app should continue loading. And returns true
if your
process has sent its parameters to another instance, and you should immediately
quit.
On OS X the system enforces single instance automatically when users try to open
a second instance of your app in Finder, and the open-file
and open-url
events will be emitted for that. However when users start your app in command
line the system's single instance machanism will be bypassed and you have to
use this method to ensure single instance.
An example of activating the window of primary instance when a second instance starts:
var myWindow = null;
var shouldQuit = app.makeSingleInstance(function(commandLine, workingDirectory) {
// Someone tried to run a second instance, we should focus our window.
if (myWindow) {
if (myWindow.isMinimized()) myWindow.restore();
myWindow.focus();
}
return true;
});
if (shouldQuit) {
app.quit();
return;
}
// Create myWindow, load the rest of the app, etc...
app.on('ready', function() {
});
app.setAppUserModelId(id)
Windows
id
String
改变 Application User Model ID 的 id
.
app.isAeroGlassEnabled()
Windows
This method returns true
if DWM composition
(Aero Glass) is enabled, and false
otherwise. You can use it to determine if
you should create a transparent window or not (transparent windows won't work
correctly when DWM composition is disabled).
Usage example:
let browserOptions = {width: 1000, height: 800};
// Make the window transparent only if the platform supports it.
if (process.platform !== 'win32' || app.isAeroGlassEnabled()) {
browserOptions.transparent = true;
browserOptions.frame = false;
}
// Create the window.
win = new BrowserWindow(browserOptions);
// Navigate.
if (browserOptions.transparent) {
win.loadURL('file://' + __dirname + '/index.html');
} else {
// No transparency, so we load a fallback that uses basic styles.
win.loadURL('file://' + __dirname + '/fallback.html');
}
app.commandLine.appendSwitch(switch[, value])
通过可选的参数 value
给 Chromium 命令行中添加一个开关。
Append a switch (with optional value
) to Chromium's command line.
贴士: 这不会影响 process.argv
,这个方法主要被开发者用于控制一些低层级的 Chromium 行为。
app.commandLine.appendArgument(value)
给 Chromium 命令行中加入一个参数。这个参数是当前正在被引用的。
贴士: 这不会影响 process.argv
。
app.dock.bounce([type])
OS X
type
字符串 (可选的) - 可以是critical
或informational
。默认下是informational
当输入 critical
时,dock 中的 icon 将会开始弹跳直到应用被激活或者这个请求被取消。
当输入 informational
时,dock 中的 icon 只会弹跳一秒钟。
然而,这个请求仍然会激活,直到应用被激活或者请求被取消。
返回一个表示这个请求的 ID。
app.dock.cancelBounce(id)
OS X
id
整数
取消这个 id
对应的请求。
app.dock.setBadge(text)
OS X
text
字符串
设置 dock 中显示的字符。
app.dock.getBadge()
OS X
返回 dock 中显示的字符。
app.dock.hide()
OS X
隐藏 dock 中的 icon。
app.dock.show()
OS X
显示 dock 中的 icon。
app.dock.setMenu(menu)
OS X
menu
菜单
设置应用的 dock 菜单.