docs-translations API process Translated into zh-CN
This commit is contained in:
parent
d86662cb80
commit
3d35f01bd1
1 changed files with 65 additions and 12 deletions
|
@ -1,27 +1,26 @@
|
|||
# 进程
|
||||
|
||||
Electron 中的 `process` 对象 与 upstream node 中的有以下的不同点:
|
||||
> process 对象扩展.
|
||||
|
||||
* `process.type` String - 进程类型, 可以是 `browser` (i.e. main process)
|
||||
或 `renderer`.
|
||||
* `process.versions.electron` String - Electron的版本.
|
||||
* `process.versions.chrome` String - Chromium的版本.
|
||||
* `process.resourcesPath` String - JavaScript源代码路径.
|
||||
* `process.mas` Boolean - 在Mac App Store 创建, 它的值为 `true`, 在其它的地方值为 `undefined`.
|
||||
Process: [Main](../glossary.md#main-process), [Renderer](../glossary.md#renderer-process)
|
||||
|
||||
Electron 的 `process` 对象是
|
||||
[Node.js `process` 对象](https://nodejs.org/api/process.html) 的扩展.
|
||||
它添加了以下事件、属性和方法:
|
||||
|
||||
## 事件
|
||||
|
||||
### 事件: 'loaded'
|
||||
|
||||
在Electron已经加载了其内部预置脚本和它准备加载主进程或渲染进程的时候触发.
|
||||
在Electron已经加载了其内部预置脚本和它准备加载网页或者主进程的时候触发.
|
||||
|
||||
当node被完全关闭的时候,它可以被预加载脚本使用来添加(原文: removed)与node无关的全局符号来回退到全局范围:
|
||||
|
||||
```javascript
|
||||
// preload.js
|
||||
var _setImmediate = setImmediate
|
||||
var _clearImmediate = clearImmediate
|
||||
process.once('loaded', function () {
|
||||
const _setImmediate = setImmediate
|
||||
const _clearImmediate = clearImmediate
|
||||
process.once('loaded', () => {
|
||||
global.setImmediate = _setImmediate
|
||||
global.clearImmediate = _clearImmediate
|
||||
})
|
||||
|
@ -33,10 +32,42 @@ process.once('loaded', function () {
|
|||
|
||||
设置它为 `true` 可以使 `asar` 文件在node的内置模块中失效.
|
||||
|
||||
### `process.type`
|
||||
|
||||
当前 `process` 的类型,值为`"browser"` (即主进程) 或 `"renderer"`.
|
||||
|
||||
### `process.versions.electron`
|
||||
|
||||
Electron的版本号.
|
||||
|
||||
### `process.versions.chrome`
|
||||
|
||||
Chrome的版本号.
|
||||
|
||||
### `process.resourcesPath`
|
||||
|
||||
资源文件夹的路径.
|
||||
|
||||
### `process.mas`
|
||||
|
||||
在 Mac App Store 的构建中,该属性为 `true`, 其他平台的构建均为 `undefined`.
|
||||
|
||||
### `process.windowsStore`
|
||||
|
||||
如果 app 是运行在 Windows Store app (appx) 中,该属性为 `true`, 其他情况均为 `undefined`.
|
||||
|
||||
### `process.defaultApp`
|
||||
|
||||
当 app 在启动时,被作为参数传递给默认应用程序,在主进程中该属性为 `true`, 其他情况均为 `undefined`.
|
||||
|
||||
## 方法
|
||||
|
||||
`process` 对象有如下方法:
|
||||
|
||||
### `process.crash()`
|
||||
|
||||
导致当前进程崩溃的主线程.
|
||||
|
||||
### `process.hang()`
|
||||
|
||||
使当前进程的主线程挂起.
|
||||
|
@ -45,4 +76,26 @@ process.once('loaded', function () {
|
|||
|
||||
* `maxDescriptors` Integer
|
||||
|
||||
设置文件描述符软限制于 `maxDescriptors` 或硬限制与os, 无论它是否低于当前进程.
|
||||
设置文件描述符软限制于 `maxDescriptors` 或硬限制于OS, 无论它是否低于当前进程.
|
||||
|
||||
### `process.getProcessMemoryInfo()`
|
||||
|
||||
返回 `Object`:
|
||||
|
||||
* `workingSetSize` Integer - 当前固定到实际物理内存的内存量.
|
||||
* `peakWorkingSetSize` Integer - 被固定在实际物理内存上的最大内存量.
|
||||
* `privateBytes` Integer - 不被其他进程共享的内存量,如JS堆或HTML内容。
|
||||
* `sharedBytes` Integer - 进程之间共享的内存量,通常是 Electron 代码本身所消耗的内存.
|
||||
|
||||
返回当前进程的内存使用统计信息的对象. 请注意,所有数据的单位都是KB.
|
||||
|
||||
### `process.getSystemMemoryInfo()`
|
||||
|
||||
返回 `Object`:
|
||||
|
||||
* `total` Integer - 系统的物理内存总量.
|
||||
* `free` Integer - 未被应用程序或磁盘缓存使用的物理内存总量.
|
||||
* `swapTotal` Integer - 系统 swap 分区(虚拟内存)总量. _Windows_ _Linux_
|
||||
* `swapFree` Integer - 系统剩余可用的 swap 分区(虚拟内存)量 _Windows_ _Linux_
|
||||
|
||||
返回系统的内存使用统计信息的对象. 请注意,所有数据的单位都是KB.
|
||||
|
|
Loading…
Reference in a new issue