- webContents
- 方法
- webContents.getAllWebContents()
- webContents.getFocusedWebContents()
- webContents.fromId(id)
- 类: WebContents
- 实例事件
- Event: 'did-finish-load'
- Event: 'did-fail-load'
- Event: 'did-frame-finish-load'
- Event: 'did-start-loading'
- Event: 'did-stop-loading'
- 事件: 'dom-ready'
- 事件: 'page-favicon-updated'
- Event: 'new-window'
- Event: 'will-navigate'
- Event: 'did-start-navigation'
- Event: 'will-redirect'
- Event: 'did-redirect-navigation'
- Event: 'did-navigate'
- Event: 'did-frame-navigate'
- Event: 'did-navigate-in-page'
- Event: 'will-prevent-unload'
- Event: 'crashed'
- 事件: 'unresponsive'
- 事件: 'responsive'
- Event: 'plugin-crashed'
- Event: 'destroyed'
- Event: 'before-input-event'
- Event: 'devtools-opened'
- Event: 'devtools-closed'
- Event: 'devtools-focused'
- 事件: 'certificate-error'
- 事件: 'select-client-certificate'
- 事件: "login"
- Event: 'found-in-page'
- Event: 'media-started-playing'
- Event: 'media-paused'
- Event: 'did-change-theme-color'
- Event: 'update-target-url'
- Event: 'cursor-changed'
- Event: 'context-menu'
- 事件: 'select-bluetooth-device'
- Event: 'paint'
- Event: 'devtools-reload-page'
- Event: 'will-attach-webview'
- Event: 'did-attach-webview'
- Event: 'console-message'
- 事件: 'remote-require'
- 事件: 'remote-get-global'
- 事件: 'remote-get-builtin'
- 事件: 'remote-get-current-window'
- 事件: 'remote-get-current-web-contents'
- 事件: 'remote-get-guest-web-contents'
- 实例方法
- contents.loadURL(url[, options])
- contents.loadFile(filePath[, options])
- contents.downloadURL(url)
- contents.getURL()
- contents.getTitle()
- contents.isDestroyed()
- contents.focus()
- contents.isFocused()
- contents.isLoading()
- contents.isLoadingMainFrame()
- contents.isWaitingForResponse()
- contents.stop()
- contents.reload()
- contents.reloadIgnoringCache()
- contents.canGoBack()
- contents.canGoForward()
- contents.canGoToOffset(offset)
- contents.clearHistory()
- contents.goBack()
- contents.goForward()
- contents.goToIndex(index)
- contents.goToOffset(offset)
- contents.isCrashed()
- contents.setUserAgent(userAgent)
- contents.getUserAgent()
- contents.insertCSS(css)
- contents.executeJavaScript(code[, userGesture, callback])
- contents.setIgnoreMenuShortcuts(ignore) 实验功能
- contents.setAudioMuted(muted)
- contents.isAudioMuted()
- contents.isCurrentlyAudible()
- contents.setZoomFactor(factor)
- contents.getZoomFactor(callback)
- contents.setZoomLevel(level)
- contents.getZoomLevel(callback)
- contents.setVisualZoomLevelLimits(minimumLevel, maximumLevel)
- contents.setLayoutZoomLevelLimits(minimumLevel, maximumLevel)
- contents.undo()
- contents.redo()
- contents.cut()
- contents.copy()
- contents.copyImageAt(x, y)
- contents.paste()
- contents.pasteAndMatchStyle()
- contents.delete()
- contents.selectAll()
- contents.unselect()
- contents.replace(text)
- contents.replaceMisspelling(text)
- contents.insertText(text)
- contents.findInPage(text[, options])
- contents.stopFindInPage(action)
- contents.capturePage([rect, ]callback)
- contents.hasServiceWorker(callback)
- contents.unregisterServiceWorker(callback)
- contents.getPrinters()
- contents.print([options], [callback])
- contents.printToPDF(options, callback)
- contents.addWorkSpace(path)
- contents.removeWorkSpace(path)
- contents.setDevToolsWebContents(devToolsWebContents)
- contents.openDevTools([options])
- contents.closeDevTools()
- contents.isDevToolsOpened()
- contents.isDevToolsFocused()
- contents.toggleDevTools()
- contents.inspectElement(x, y)
- contents.inspectServiceWorker()
- contents.send(channel[, arg1][, arg2][, …])
- contents.enableDeviceEmulation(parameters)
- contents.disableDeviceEmulation()
- contents.sendInputEvent(event)
- contents.beginFrameSubscription([onlyDirty ,]callback)
- contents.endFrameSubscription()
- contents.startDrag(item)
- contents.savePage(fullPath, saveType, callback)
- contents.showDefinitionForSelection() macOS
- contents.isOffscreen()
- contents.startPainting()
- contents.stopPainting()
- contents.isPainting()
- contents.setFrameRate(fps)
- contents.getFrameRate()
- contents.invalidate()
- contents.getWebRTCIPHandlingPolicy()
- contents.setWebRTCIPHandlingPolicy(policy)
- contents.getOSProcessId()
- contents.getProcessId()
- contents.takeHeapSnapshot(filePath)
- contents.setBackgroundThrottling(allowed)
- contents.getType()
- 实例属性
- contents.id
- contents.session
- contents.hostWebContents
- contents.devToolsWebContents
- contents.debugger
- 实例事件
- 方法
webContents
渲染以及控制 web 页面
进程:主进程
webContents 是 EventEmitter 的实例, 负责渲染和控制网页, 是 BrowserWindow 对象的一个属性。 这是一个访问 webContents 对象的例子:
const { BrowserWindow } = require('electron')let win = new BrowserWindow({ width: 800, height: 1500 })win.loadURL('http://github.com')let contents = win.webContentsconsole.log(contents)
方法
通过webContents模块可以访问以下方法:
const { webContents } = require('electron')console.log(webContents)
webContents.getAllWebContents()
返回 WebContents[] - 所有 WebContents 实例的数组。 包含所有Windows,webviews,opened devtools 和 devtools 扩展背景页的 web 内容
webContents.getFocusedWebContents()
Returns WebContents - 此 app 中焦点的 web 内容,否则返回 null。
webContents.fromId(id)
idInteger
ReturnsWebContents- 给定 id 的 WebContents 实例。
类: WebContents
渲染和控制 BrowserWindow 实例的内容。
进程:主进程
实例事件
Event: 'did-finish-load'
导航完成时触发,即选项卡的旋转器将停止旋转,并指派onload事件后。
Event: 'did-fail-load'
返回:
eventEventerrorCodeIntegererrorDescriptionStringvalidatedURLStringisMainFrameBooleanframeProcessIdIntegerframeRoutingIdInteger
这个事件类似于did-finish-load, 不过是在加载失败或取消后触发,例如调用了window.stop()。 完整的错误码列表以及含义,请看这
Event: 'did-frame-finish-load'
返回:
eventEventisMainFrameBooleanframeProcessIdIntegerframeRoutingIdInteger
当框架完成导航(navigation)时触发
Event: 'did-start-loading'
当tab中的旋转指针(spinner)开始旋转时,就会触发该事件。
Event: 'did-stop-loading'
当tab中的旋转指针(spinner)结束旋转时,就会触发该事件。
事件: 'dom-ready'
返回:
eventEvent
一个框架中的文本加载完成后触发该事件。
事件: 'page-favicon-updated'
返回:
eventEventfaviconsString[] - 由连接组成的数组。
当页面获取到favicon的连接时,触发该事件。
Event: 'new-window'
返回:
eventEventurlStringframeNameStringdispositionString - 可以被设置为default,foreground-tab,background-tab,new-window,save-to-disk及other.optionsObject - 用于创建新的BrowserWindow.additionalFeaturesString[] - 非标准功能(非标准功能是指这些功能不是由Chromium或Electron处理的功能),这些功能默认指向window.open().referrerReferrer - The referrer that will be passed to the new window. May or may not result in theRefererheader being sent, depending on the referrer policy.
当页面请求打开地址为url的新窗口时触发。可以通过window.open或外部链接 (如<a target='_blank'>) 触发。
默认情况下, 将为 url 创建新的 BrowserWindow。
调用event.preventDefault()事件,可以阻止Electron自动创建新的BrowserWindow实例。 调用event.preventDefault() 事件后,你还可以手动创建新的BrowserWindow实例,不过接下来你必须用event.newGuest方法来引用BrowserWindow实例,如果你不这样做,则可能会产生异常。 例如:
myBrowserWindow.webContents.on('new-window', (event, url) => {event.preventDefault()const win = new BrowserWindow({ show: false })win.once('ready-to-show', () => win.show())win.loadURL(url)event.newGuest = win})
Event: 'will-navigate'
返回:
eventEventurlString
Emitted when a user or the page wants to start navigation. It can happen when thewindow.locationobject is changed or a user clicks a link in the page.
This event will not emit when the navigation is started programmatically with APIs like webContents.loadURL and webContents.back.
It is also not emitted for in-page navigations, such as clicking anchor links or updating the window.location.hash. Use did-navigate-in-page event for this purpose.
调用event.preventDefault()将阻止导航。
Event: 'did-start-navigation'
返回:
eventEventurlStringisInPlaceBooleanisMainFrameBooleanframeProcessIdIntegerframeRoutingIdInteger
Emitted when any frame (including main) starts navigating.isInplacewill betruefor in-page navigations.
Event: 'will-redirect'
返回:
eventEventurlStringisInPlaceBooleanisMainFrameBooleanframeProcessIdIntegerframeRoutingIdInteger
Emitted as a server side redirect occurs during navigation. For example a 302 redirect.
This event will be emitted after did-start-navigation and always before the did-redirect-navigation event for the same navigation.
Calling event.preventDefault() will prevent the navigation (not just the redirect).
Event: 'did-redirect-navigation'
返回:
eventEventurlStringisInPlaceBooleanisMainFrameBooleanframeProcessIdIntegerframeRoutingIdInteger
Emitted after a server side redirect occurs during navigation. For example a 302 redirect.
This event can not be prevented, if you want to prevent redirects you should checkout out the will-redirect event above.
Event: 'did-navigate'
返回:
eventEventurlStringhttpResponseCodeInteger - -1 for non HTTP navigationshttpStatusTextString - empty for non HTTP navigations
Emitted when a main frame navigation is done.
This event is not emitted for in-page navigations, such as clicking anchor links or updating the window.location.hash. Use did-navigate-in-page event for this purpose.
Event: 'did-frame-navigate'
返回:
eventEventurlStringhttpResponseCodeInteger - -1 for non HTTP navigationshttpStatusTextString - empty for non HTTP navigations,isMainFrameBooleanframeProcessIdIntegerframeRoutingIdInteger
Emitted when any frame navigation is done.
This event is not emitted for in-page navigations, such as clicking anchor links or updating the window.location.hash. Use did-navigate-in-page event for this purpose.
Event: 'did-navigate-in-page'
返回:
eventEventurlStringisMainFrameBooleanframeProcessIdIntegerframeRoutingIdInteger
Emitted when an in-page navigation happened in any frame.
当发生页内导航时,虽然页面地址发生变化,但它并没有导航到其它页面。 例如,点击锚点链接,或者DOM的 hashchange事件被触发时,都会触发该事件。
Event: 'will-prevent-unload'
返回:
eventEvent
Emitted when abeforeunloadevent handler is attempting to cancel a page unload.
Calling event.preventDefault() will ignore the beforeunload event handler and allow the page to be unloaded.
const { BrowserWindow, dialog } = require('electron')const win = new BrowserWindow({ width: 800, height: 600 })win.webContents.on('will-prevent-unload', (event) => {const choice = dialog.showMessageBox(win, {type: 'question',buttons: ['Leave', 'Stay'],title: 'Do you want to leave this site?',message: 'Changes you made may not be saved.',defaultId: 0,cancelId: 1})const leave = (choice === 0)if (leave) {event.preventDefault()}})
Event: 'crashed'
返回:
eventEventkilledBoolean
当渲染进程崩溃或被结束时触发
事件: 'unresponsive'
网页变得未响应时触发
事件: 'responsive'
未响应的页面变成响应时触发
Event: 'plugin-crashed'
返回:
eventEventnameStringversionString
当有插件进程崩溃时触发
Event: 'destroyed'
当webContents被销毁时,触发该事件。
Event: 'before-input-event'
返回:
eventEventinputObject - Input属性.typeString - 可以是keyUp,或者keyDown.keyString - 等同于 KeyboardEvent.key.codeString - 等同于 KeyboardEvent. code .isAutoRepeatString - 等同于 KeyboardEvent. repeat .shiftString - 等同于 KeyboardEvent.shiftKey .controlString - 等同于 KeyboardEvent. controlKey .altString - 等同于 KeyboardEvent. altKey .metaString - 等同于 KeyboardEvent. metaKey .
Emitted before dispatching thekeydownandkeyupevents in the page. Callingevent.preventDefaultwill prevent the pagekeydown/keyupevents and the menu shortcuts.
To only prevent the menu shortcuts, use setIgnoreMenuShortcuts:
const { BrowserWindow } = require('electron')let win = new BrowserWindow({ width: 800, height: 600 })win.webContents.on('before-input-event', (event, input) => {// For example, only enable application menu keyboard shortcuts when// Ctrl/Cmd are down.win.webContents.setIgnoreMenuShortcuts(!input.control && !input.meta)})
Event: 'devtools-opened'
当开发者工具被打开时,触发该事件。
Event: 'devtools-closed'
当开发者工具被关闭时,触发该事件。
Event: 'devtools-focused'
当开发者工具被选中/打开时,触发该事件。
事件: 'certificate-error'
返回:
eventEventurlStringerrorString - 错误码.certificate证书callbackFunction - 回调函数isTrustedBoolean - 用于显示证书是否可信。证书的链接验证失败时,触发该事件。
使用方式与app的certificate-error的事件相同。
事件: 'select-client-certificate'
返回:
eventEventurlURLcertificateList证书[]callbackFunction - 回调函数certificateCertificate - Must be a certificate from the given list.
当一个客户证书被请求的时候发出。
使用方式与app的select-client-certificate的事件相同。
事件: "login"
返回:
eventEventrequestObjectmethodStringurlURLreferrerURL
authInfoObjectisProxyBooleanschemeStringhostStringportIntegerrealmString
callbackFunction - 回调函数usernameStringpasswordString
当webContents要进行基本身份验证时触发。
使用方式与app的login的事件相同。
Event: 'found-in-page'
返回:
eventEventresultObjectrequestIdIntegeractiveMatchOrdinalInteger - 当前匹配位置。matchesInteger - 符合匹配条件的元素个数。selectionAreaObject - Coordinates of first match region.finalUpdateBoolean
如果调用[webContents.findInPage]有返回时,会触发这一事件。
Event: 'media-started-playing'
多媒体开始播放时,触发该事件。
Event: 'media-paused'
当媒体文件暂停或播放完成的时候触发
Event: 'did-change-theme-color'
Emitted when a page's theme color changes. This is usually due to encountering a meta tag:
<meta name='theme-color' content='#ff0000'>
返回:
eventEventcolor(String | null) - Theme color is in format of '#rrggbb'. It isnullwhen no theme color is set.
Event: 'update-target-url'
返回:
eventEventurlString
当鼠标滑到,或者键盘切换到a连接时,触发该事件。
Event: 'cursor-changed'
返回:
eventEventtypeStringimageNativeImage (可选)scaleFloat (optional) - scaling factor for the custom cursor.sizeSize (可选) -image大小。hotspotPoint (optional) - coordinates of the custom cursor's hotspot.
当鼠标指针改变的时候触发。 Type参数值包含:default,crosshair,pointer,text,wait,help,e-resize,n-resize,ne-resize,nw-resize,s-resize,se-resize,sw-resize,w-resize,ns-resize,ew-resize,nesw-resize,nwse-resize,col-resize,row-resize,m-panning,e-panning,n-panning,ne-panning,nw-panning,s-panning,se-panning,sw-panning,w-panning,move,vertical-text,cell,context-menu,alias,progress,nodrop,copy,none,not-allowed,zoom-in,zoom-out,grab,grabbing或custom.
If the type parameter is custom, the image parameter will hold the custom cursor image in a NativeImage, and scale, size and hotspot will hold additional information about the custom cursor.
Event: 'context-menu'
返回:
eventEventparamsObjectxInteger - x 坐标。yInteger - y 坐标。linkURLString - URL of the link that encloses the node the context menu was invoked on.linkTextString - Text associated with the link. May be an empty string if the contents of the link are an image.pageURLString - URL of the top level page that the context menu was invoked on.frameURLString - URL of the subframe that the context menu was invoked on.srcURLString - Source URL for the element that the context menu was invoked on. Elements with source URLs are images, audio and video.mediaTypeString - Type of the node the context menu was invoked on. Can benone,image,audio,video,canvas,fileorplugin.hasImageContentsBoolean - Whether the context menu was invoked on an image which has non-empty contents.isEditableBoolean - Whether the context is editable.selectionTextString - Text of the selection that the context menu was invoked on.titleTextString - Title or alt text of the selection that the context was invoked on.misspelledWordString - The misspelled word under the cursor, if any.frameCharsetString - The character encoding of the frame on which the menu was invoked.inputFieldTypeString - If the context menu was invoked on an input field, the type of that field. Possible values arenone,plainText,password,other.menuSourceTypeString - Input source that invoked the context menu. Can benone,mouse,keyboard,touchortouchMenu.mediaFlagsObject - The flags for the media element the context menu was invoked on.inErrorBoolean - Whether the media element has crashed.isPausedBoolean - Whether the media element is paused.isMutedBoolean - Whether the media element is muted.hasAudioBoolean - Whether the media element has audio.isLoopingBoolean - Whether the media element is looping.isControlsVisibleBoolean - Whether the media element's controls are visible.canToggleControlsBoolean - Whether the media element's controls are toggleable.canRotateBoolean - Whether the media element can be rotated.
editFlagsObject - These flags indicate whether the renderer believes it is able to perform the corresponding action.canUndoBoolean - Whether the renderer believes it can undo.canRedoBoolean - Whether the renderer believes it can redo.canCutBoolean - Whether the renderer believes it can cut.canCopyBoolean - Whether the renderer believes it can copycanPasteBoolean - Whether the renderer believes it can paste.canDeleteBoolean - Whether the renderer believes it can delete.canSelectAllBoolean - Whether the renderer believes it can select all.
Emitted when there is a new context menu that needs to be handled.
事件: 'select-bluetooth-device'
返回:
eventEventdevicesBluetoothDevice[]callbackFunction - 回调函数deviceIdString 设备Id
Emitted when bluetooth device needs to be selected on call tonavigator.bluetooth.requestDevice. To usenavigator.bluetoothapiwebBluetoothshould be enabled. Ifevent.preventDefaultis not called, first available device will be selected.callbackshould be called withdeviceIdto be selected, passing empty string tocallbackwill cancel the request.
const { app, BrowserWindow } = require('electron')let win = nullapp.commandLine.appendSwitch('enable-experimental-web-platform-features')app.on('ready', () => {win = new BrowserWindow({ width: 800, height: 600 })win.webContents.on('select-bluetooth-device', (event, deviceList, callback) => {event.preventDefault()let result = deviceList.find((device) => {return device.deviceName === 'test'})if (!result) {callback('')} else {callback(result.deviceId)}})})
Event: 'paint'
返回:
eventEventdirtyRectRectangleimageNativeImage - The image data of the whole frame.
Emitted when a new frame is generated. Only the dirty area is passed in the buffer.
const { BrowserWindow } = require('electron')let win = new BrowserWindow({ webPreferences: { offscreen: true } })win.webContents.on('paint', (event, dirty, image) => {// updateBitmap(dirty, image.getBitmap())})win.loadURL('http://github.com')
Event: 'devtools-reload-page'
当在开发者工具中命令webContents重新加载时,触发该事件。
Event: 'will-attach-webview'
返回:
eventEventwebPreferencesObject - The web preferences that will be used by the guest page. This object can be modified to adjust the preferences for the guest page.paramsObject - The other<webview>parameters such as thesrcURL. This object can be modified to adjust the parameters of the guest page.
Emitted when a<webview>'s web contents is being attached to this web contents. Callingevent.preventDefault()will destroy the guest page.
This event can be used to configure webPreferences for the webContents of a <webview> before it's loaded, and provides the ability to set settings that can't be set via <webview> attributes.
Note: The specified preload script option will be appear as preloadURL (not preload) in the webPreferences object emitted with this event.
Event: 'did-attach-webview'
返回:
eventEventwebContentsWebContents - The guest web contents that is used by the<webview>.
当<webview>被挂载到页面内容中时,触发该事件。
Event: 'console-message'
返回:
eventEventlevelIntegermessageStringlineIntegersourceIdString
Emitted when the associated window logs a console message. Will not be emitted for windows with offscreen rendering enabled.
事件: 'remote-require'
返回:
eventEventmoduleNameString
Emitted whenremote.require()is called in the renderer process. 调用event.preventDefault()将阻止模块返回。 可以通过设置event.returnValue返回自定义值。
事件: 'remote-get-global'
返回:
eventEventglobalNameString
Emitted whenremote.getGlobal()is called in the renderer process. 调用event.preventDefault()将阻止全局返回。 可以通过设置event.returnValue返回自定义值。
事件: 'remote-get-builtin'
返回:
eventEventmoduleNameString
Emitted whenremote.getBuiltin()is called in the renderer process. 调用event.preventDefault()将阻止模块返回。 可以通过设置event.returnValue返回自定义值。
事件: 'remote-get-current-window'
返回:
eventEvent
Emitted whenremote.getCurrentWindow()is called in the renderer process. 调用event.preventDefault()将阻止对象返回 可以通过设置event.returnValue返回自定义值。
事件: 'remote-get-current-web-contents'
返回:
eventEvent
Emitted whenremote.getCurrentWebContents()is called in the renderer process. 调用event.preventDefault()将阻止对象返回 可以通过设置event.returnValue返回自定义值。
事件: 'remote-get-guest-web-contents'
返回:
eventEventguestWebContentsWebContents
Emitted when<webview>.getWebContents()is called in the renderer process. 调用event.preventDefault()将阻止对象返回 可以通过设置event.returnValue返回自定义值。
实例方法
contents.loadURL(url[, options])
urlStringoptionsObject (可选)httpReferrer(String | Referrer) (optional) - An HTTP Referrer url.userAgentString (可选) - 发起请求的 userAgent.extraHeadersString (optional) - Extra headers separated by "\n".postData(UploadRawData[] | UploadFile[] | UploadBlob[]) (optional)baseURLForDataURLString (可选) - 要加载的数据文件的根 url(带有路径分隔符). 只有当指定的url是一个数据 url 并需要加载其他文件时,才需要这样做。
Loads theurlin the window. Theurlmust contain the protocol prefix, e.g. thehttp://orfile://. If the load should bypass http cache then use thepragmaheader to achieve it.
const { webContents } = require('electron')const options = { extraHeaders: 'pragma: no-cache\n' }webContents.loadURL('https://github.com', options)
contents.loadFile(filePath[, options])
filePathStringoptionsObject (可选)queryObject (可选) - 传递给url.format().searchString (可选) - 传递给url.format().hashString (可选) - 传递给url.format().
Loads the given file in the window,filePathshould be a path to an HTML file relative to the root of your application. For instance an app structure like this:
| root| - package.json| - src| - main.js| - index.html
需要运行以下代码:
win.loadFile('src/index.html')
contents.downloadURL(url)
urlString
Initiates a download of the resource aturlwithout navigating. Thewill-downloadevent ofsessionwill be triggered.
contents.getURL()
Returns String - 当前页面的URL.
const { BrowserWindow } = require('electron')let win = new BrowserWindow({ width: 800, height: 600 })win.loadURL('http://github.com')let currentURL = win.webContents.getURL()console.log(currentURL)
contents.getTitle()
返回 String - 当前页面的标题.
contents.isDestroyed()
返回 Boolean -判断页面是否被销毁
contents.focus()
页面聚焦
contents.isFocused()
返回 Boolean - 判断页面是否聚焦
contents.isLoading()
返回 Boolean - 判断页面是否正在加载资源
contents.isLoadingMainFrame()
Returns Boolean - Whether the main frame (and not just iframes or frames within it) is still loading.
contents.isWaitingForResponse()
Returns Boolean - Whether the web page is waiting for a first-response from the main resource of the page.
contents.stop()
Stops any pending navigation.
contents.reload()
刷新当前页面
contents.reloadIgnoringCache()
忽略缓存强制刷新页面
contents.canGoBack()
返回Boolean,是否可以返回到上一个页面
contents.canGoForward()
返回Boolean ,是否可以进入下一个页面
contents.canGoToOffset(offset)
offsetInteger
ReturnsBoolean- Whether the web page can go tooffset.
contents.clearHistory()
Clears the navigation history.
contents.goBack()
使浏览器回退到上一个页面。
contents.goForward()
使浏览器前进到下一个页面。
contents.goToIndex(index)
indexInteger
Navigates browser to the specified absolute web page index.
contents.goToOffset(offset)
offsetInteger
定位到相对于“当前入口”的指定的偏移。
contents.isCrashed()
Returns Boolean - Whether the renderer process has crashed.
contents.setUserAgent(userAgent)
userAgentString
重写该页面的user agent
contents.getUserAgent()
返回 String - 当前页面的user agent.
contents.insertCSS(css)
cssString
为当前页面注入样式
contents.executeJavaScript(code[, userGesture, callback])
codeStringuserGestureBoolean (optional) - Default isfalse.callbackFunction (可选) - 在脚本被执行后被调用。resultAny
ReturnsPromise<any>- A promise that resolves with the result of the executed code or is rejected if the result of the code is a rejected promise.
在页面中执行 code。
在浏览器窗口中,一些HTML API(如requestFullScreen)只能是 由来自用户的手势调用。 将 userGesture 设置为 true 将删除此限制。
If the result of the executed code is a promise the callback result will be the resolved value of the promise. We recommend that you use the returned Promise to handle code that results in a Promise.
contents.executeJavaScript('fetch("https://jsonplaceholder.typicode.com/users/1").then(resp => resp.json())', true).then((result) => {console.log(result) // Will be the JSON object from the fetch call})
contents.setIgnoreMenuShortcuts(ignore) 实验功能
ignoreBoolean
Ignore application menu shortcuts while this web contents is focused.
contents.setAudioMuted(muted)
mutedBoolean
使当前页面音频静音
contents.isAudioMuted()
返回 Boolean -判断页面是否被静音
contents.isCurrentlyAudible()
Returns Boolean - Whether audio is currently playing.
contents.setZoomFactor(factor)
factorNumber - 缩放比例
更改缩放比例。缩放比例是缩放百分比除以 100,如 300% = 3.0。
contents.getZoomFactor(callback)
callbackFunction - 回调函数zoomFactorNumber
Sends a request to get current zoom factor, thecallbackwill be called withcallback(zoomFactor).
contents.setZoomLevel(level)
levelNumber - 缩放等级。
更改缩放等级。 The original size is 0 and each increment above or below represents zooming 20% larger or smaller to default limits of 300% and 50% of original size, respectively. The formula for this isscale := 1.2 ^ level.
contents.getZoomLevel(callback)
callbackFunction - 回调函数zoomLevelNumber
Sends a request to get current zoom level, thecallbackwill be called withcallback(zoomLevel).
contents.setVisualZoomLevelLimits(minimumLevel, maximumLevel)
minimumLevelNumbermaximumLevelNumber
设置最大和最小缩放级别。
NOTE: Visual zoom is disabled by default in Electron. To re-enable it, call:
contents.setVisualZoomLevelLimits(1, 3)
contents.setLayoutZoomLevelLimits(minimumLevel, maximumLevel)
minimumLevelNumbermaximumLevelNumber
设置最大和最小基于布局(例如非图像)的缩放级别。
contents.undo()
在页面中执行undo编辑命令。
contents.redo()
在页面中执行redo编辑命令。
contents.cut()
在页面中执行cut编辑命令。
contents.copy()
在页面中执行copy编辑命令。
contents.copyImageAt(x, y)
xIntegeryInteger
Copy the image at the given position to the clipboard.
contents.paste()
在页面中执行paste编辑命令。
contents.pasteAndMatchStyle()
在页面中执行pasteAndMatchStyle编辑命令。
contents.delete()
在页面中执行delete编辑命令。
contents.selectAll()
在页面中执行selectAll编辑命令。
contents.unselect()
在页面中执行unselect编辑命令。
contents.replace(text)
textString
在页面中执行replace编辑命令。
contents.replaceMisspelling(text)
textString
在页面中执行replaceMisspelling编辑命令。
contents.insertText(text)
textString
插入text到焦点元素
contents.findInPage(text[, options])
textString - 要搜索的内容,必须非空。optionsObject (可选)forwardBoolean (可选) -向前或向后搜索,默认为true。findNextBoolean (optional) - Whether the operation is first request or a follow up, defaults tofalse.matchCaseBoolean (optional) - Whether search should be case-sensitive, defaults tofalse.wordStartBoolean (optional) (Deprecated) - Whether to look only at the start of words. defaults tofalse.medialCapitalAsWordStartBoolean (optional) (Deprecated) - When combined withwordStart, accepts a match in the middle of a word if the match begins with an uppercase letter followed by a lowercase or non-letter. Accepts several other intra-word matches, defaults tofalse.
ReturnsInteger- The request id used for the request.
Starts a request to find all matches for the text in the web page. The result of the request can be obtained by subscribing to found-in-page event.
contents.stopFindInPage(action)
actionString - Specifies the action to take place when ending [webContents.findInPage] request.clearSelection- Clear the selection.keepSelection- Translate the selection into a normal selection.activateSelection- Focus and click the selection node.
Stops anyfindInPagerequest for thewebContentswith the providedaction.
const { webContents } = require('electron')webContents.on('found-in-page', (event, result) => {if (result.finalUpdate) webContents.stopFindInPage('clearSelection')})const requestId = webContents.findInPage('api')console.log(requestId)
contents.capturePage([rect, ]callback)
rectRectangle (optional) - The area of the page to be captured.callbackFunction - 回调函数imageNativeImage
Captures a snapshot of the page withinrect. Upon completioncallbackwill be called withcallback(image). Theimageis an instance of NativeImage that stores data of the snapshot. Omittingrectwill capture the whole visible page.
contents.hasServiceWorker(callback)
callbackFunction - 回调函数hasWorkerBoolean
Checks if any ServiceWorker is registered and returns a boolean as response tocallback.
contents.unregisterServiceWorker(callback)
callbackFunction - 回调函数successBoolean
Unregisters any ServiceWorker if present and returns a boolean as response tocallbackwhen the JS promise is fulfilled or false when the JS promise is rejected.
contents.getPrinters()
获取系统打印机列表
返回 PrinterInfo[].
contents.print([options], [callback])
optionsObject (可选)silentBoolean (可选) - 不询问用户打印信息,默认为false。printBackgroundBoolean (optional) - Also prints the background color and image of the web page. Default isfalse.deviceNameString (optional) - Set the printer device name to use. Default is''.
callbackFunction (可选)successBoolean - Indicates success of the print call.
Prints window's web page. Whensilentis set totrue, Electron will pick the system's default printer ifdeviceNameis empty and the default settings for printing.
Calling window.print() in web page is equivalent to calling webContents.print({ silent: false, printBackground: false, deviceName: '' }).
Use page-break-before: always; CSS style to force to print to a new page.
contents.printToPDF(options, callback)
optionsObjectmarginsTypeInteger (optional) - Specifies the type of margins to use. Uses 0 for default margin, 1 for no margin, and 2 for minimum margin.pageSizeString | Size (optional) - Specify page size of the generated PDF. Can beA3,A4,A5,Legal,Letter,Tabloidor an Object containingheightandwidthin microns.printBackgroundBoolean (optional) - Whether to print CSS backgrounds.printSelectionOnlyBoolean (optional) - Whether to print selection only.landscapeBoolean (optional) -truefor landscape,falsefor portrait.
callbackFunction - 回调函数errorErrordataBuffer
Prints window's web page as PDF with Chromium's preview printing custom settings.
The callback will be called with callback(error, data) on completion. The data is a Buffer that contains the generated PDF data.
The landscape will be ignored if @page CSS at-rule is used in the web page.
By default, an empty options will be regarded as:
{marginsType: 0,printBackground: false,printSelectionOnly: false,landscape: false}
Use page-break-before: always; CSS style to force to print to a new page.
An example of webContents.printToPDF:
const { BrowserWindow } = require('electron')const fs = require('fs')let win = new BrowserWindow({ width: 800, height: 600 })win.loadURL('http://github.com')win.webContents.on('did-finish-load', () => {// Use default printing optionswin.webContents.printToPDF({}, (error, data) => {if (error) throw errorfs.writeFile('/tmp/print.pdf', data, (error) => {if (error) throw errorconsole.log('Write PDF successfully.')})})})
contents.addWorkSpace(path)
pathString
Adds the specified path to DevTools workspace. Must be used after DevTools creation:
const { BrowserWindow } = require('electron')let win = new BrowserWindow()win.webContents.on('devtools-opened', () => {win.webContents.addWorkSpace(__dirname)})
contents.removeWorkSpace(path)
pathString
Removes the specified path from DevTools workspace.
contents.setDevToolsWebContents(devToolsWebContents)
devToolsWebContentsWebContents
Uses thedevToolsWebContentsas the targetWebContentsto show devtools.
The devToolsWebContents must not have done any navigation, and it should not be used for other purposes after the call.
By default Electron manages the devtools by creating an internal WebContents with native view, which developers have very limited control of. With the setDevToolsWebContents method, developers can use any WebContents to show the devtools in it, including BrowserWindow, BrowserView and <webview> tag.
Note that closing the devtools does not destroy the devToolsWebContents, it is caller's responsibility to destroy devToolsWebContents.
An example of showing devtools in a <webview> tag:
<html><head><style type="text/css">* { margin: 0; }#browser { height: 70%; }#devtools { height: 30%; }</style></head><body><webview id="browser" src="https://github.com"></webview><webview id="devtools"></webview><script>const browserView = document.getElementById('browser')const devtoolsView = document.getElementById('devtools')browserView.addEventListener('dom-ready', () => {const browser = browserView.getWebContents()browser.setDevToolsWebContents(devtoolsView.getWebContents())browser.openDevTools()})</script></body></html>
An example of showing devtools in a BrowserWindow:
const { app, BrowserWindow } = require('electron')let win = nulllet devtools = nullapp.once('ready', () => {win = new BrowserWindow()devtools = new BrowserWindow()win.loadURL('https://github.com')win.webContents.setDevToolsWebContents(devtools.webContents)win.webContents.openDevTools({ mode: 'detach' })})
contents.openDevTools([options])
optionsObject (可选)modeString - Opens the devtools with specified dock state, can beright,bottom,undocked,detach. Defaults to last used dock state. Inundockedmode it's possible to dock back. Indetachmode it's not.
Opens the devtools.
When contents is a <webview> tag, the mode would be detach by default, explicitly passing an empty mode can force using last used dock state.
contents.closeDevTools()
关闭开发者工具。
contents.isDevToolsOpened()
返回Boolean - 开发者工具是否处于开启状态。
contents.isDevToolsFocused()
返回Boolean - 开发者工具是否处于当前执行状态。
contents.toggleDevTools()
切换开发工具
contents.inspectElement(x, y)
xIntegeryInteger
开始检查位于(x,y) 的元素。
contents.inspectServiceWorker()
Opens the developer tools for the service worker context.
contents.send(channel[, arg1][, arg2][, …])
channelString…argsany[]
通过channel向渲染器进程发送异步消息,可以发送任意参数。 在内部,参数会被序列化为 JSON,因此参数对象上的函数和原型链不会被发送。
The renderer process can handle the message by listening to channel with the ipcRenderer module.
An example of sending messages from the main process to the renderer process:
// 在主进程中.const { app, BrowserWindow } = require('electron')let win = nullapp.on('ready', () => {win = new BrowserWindow({ width: 800, height: 600 })win.loadURL(`file://${__dirname}/index.html`)win.webContents.on('did-finish-load', () => {win.webContents.send('ping', 'whoooooooh!')})})
<!-- index.html --><html><body><script>require('electron').ipcRenderer.on('ping', (event, message) => {console.log(message) // Prints 'whoooooooh!'})</script></body></html>
contents.enableDeviceEmulation(parameters)
parametersObjectscreenPositionString - Specify the screen type to emulate (default:desktop):desktop- Desktop screen type.mobile- Mobile screen type.
screenSizeSize - Set the emulated screen size (screenPosition == mobile).viewPositionPoint - Position the view on the screen (screenPosition == mobile) (default:{ x: 0, y: 0 }).deviceScaleFactorInteger - Set the device scale factor (if zero defaults to original device scale factor) (default:0).viewSizeSize - Set the emulated view size (empty means no override)scaleFloat - Scale of emulated view inside available space (not in fit to view mode) (default:1).
允许设备模拟给定参数。
contents.disableDeviceEmulation()
禁止webContents.enableDeviceEmulation允许的模拟设备
contents.sendInputEvent(event)
eventObjecttypeString (required) - The type of the event, can bemouseDown,mouseUp,mouseEnter,mouseLeave,contextMenu,mouseWheel,mouseMove,keyDown,keyUporchar.modifiersString[] - An array of modifiers of the event, can includeshift,control,alt,meta,isKeypad,isAutoRepeat,leftButtonDown,middleButtonDown,rightButtonDown,capsLock,numLock,left,right.
Sends an inputeventto the page. Note: TheBrowserWindowcontaining the contents needs to be focused forsendInputEvent()to work.
For keyboard events, the event object also have following properties:
keyCodeString (required) - The character that will be sent as the keyboard event. Should only use the valid key codes in Accelerator.
For mouse events, theeventobject also have following properties:xInteger (required)yInteger (required)buttonString - The button pressed, can beleft,middle,right.globalXIntegerglobalYIntegermovementXIntegermovementYIntegerclickCountIntegermouseWheel事件的event对象还有下列属性:deltaXIntegerdeltaYIntegerwheelTicksXIntegerwheelTicksYIntegeraccelerationRatioXIntegeraccelerationRatioYIntegerhasPreciseScrollingDeltasBooleancanScrollBoolean
contents.beginFrameSubscription([onlyDirty ,]callback)
onlyDirtyBoolean (可选) - 默认值为false.callbackFunction - 回调函数imageNativeImagedirtyRectRectangle
Begin subscribing for presentation events and captured frames, thecallbackwill be called withcallback(image, dirtyRect)when there is a presentation event.
The image is an instance of NativeImage that stores the captured frame.
The dirtyRect is an object with x, y, width, height properties that describes which part of the page was repainted. If onlyDirty is set to true, image will only contain the repainted area. onlyDirty defaults to false.
contents.endFrameSubscription()
End subscribing for frame presentation events.
contents.startDrag(item)
itemObjectfileString orfilesArray - The path(s) to the file(s) being dragged.iconNativeImage - The image must be non-empty on macOS.
Sets theitemas dragging item for current drag-drop operation,fileis the absolute path of the file to be dragged, andiconis the image showing under the cursor when dragging.
contents.savePage(fullPath, saveType, callback)
fullPathString - The full file path.saveTypeString - Specify the save type.HTMLOnly- Save only the HTML of the page.HTMLComplete- Save complete-html page.MHTML- Save complete-html page as MHTML.
callbackFunction - 回调函数 -(error) => {}.errorError
ReturnsBoolean- true if the process of saving page has been initiated successfully.
const { BrowserWindow } = require('electron')let win = new BrowserWindow()win.loadURL('https://github.com')win.webContents.on('did-finish-load', () => {win.webContents.savePage('/tmp/test.html', 'HTMLComplete', (error) => {if (!error) console.log('Save page successfully')})})
contents.showDefinitionForSelection() macOS
Shows pop-up dictionary that searches the selected word on the page.
contents.isOffscreen()
Returns Boolean - Indicates whether offscreen rendering is enabled.
contents.startPainting()
If offscreen rendering is enabled and not painting, start painting.
contents.stopPainting()
If offscreen rendering is enabled and painting, stop painting.
contents.isPainting()
Returns Boolean - If offscreen rendering is enabled returns whether it is currently painting.
contents.setFrameRate(fps)
fpsInteger
If offscreen rendering is enabled sets the frame rate to the specified number. Only values between 1 and 60 are accepted.
contents.getFrameRate()
Returns Integer - If offscreen rendering is enabled returns the current frame rate.
contents.invalidate()
Schedules a full repaint of the window this web contents is in.
If offscreen rendering is enabled invalidates the frame and generates a new one through the 'paint' event.
contents.getWebRTCIPHandlingPolicy()
Returns String - Returns the WebRTC IP Handling Policy.
contents.setWebRTCIPHandlingPolicy(policy)
policyString - Specify the WebRTC IP Handling Policy.default- Exposes user's public and local IPs. This is the default behavior. When this policy is used, WebRTC has the right to enumerate all interfaces and bind them to discover public interfaces.default_public_interface_only- Exposes user's public IP, but does not expose user's local IP. When this policy is used, WebRTC should only use the default route used by http. This doesn't expose any local addresses.default_public_and_private_interfaces- Exposes user's public and local IPs. When this policy is used, WebRTC should only use the default route used by http. This also exposes the associated default private address. Default route is the route chosen by the OS on a multi-homed endpoint.disable_non_proxied_udp- Does not expose public or local IPs. When this policy is used, WebRTC should only use TCP to contact peers or servers unless the proxy server supports UDP.
Setting the WebRTC IP handling policy allows you to control which IPs are exposed via WebRTC. See BrowserLeaks for more details.
contents.getOSProcessId()
Returns Integer - The operating system pid of the associated renderer process.
contents.getProcessId()
Returns Integer - The Chromium internal pid of the associated renderer. Can be compared to the frameProcessId passed by frame specific navigation events (e.g. did-frame-navigate)
contents.takeHeapSnapshot(filePath)
filePathString - Path to the output file.
ReturnsPromise<void>- Indicates whether the snapshot has been created successfully.
Takes a V8 heap snapshot and saves it to filePath.
contents.setBackgroundThrottling(allowed)
allowedBoolean
Controls whether or not this WebContents will throttle animations and timers when the page becomes backgrounded. This also affects the Page Visibility API.
contents.getType()
Returns String - the type of the webContent. Can be backgroundPage, window, browserView, remote, webview or offscreen.
实例属性
contents.id
Integer类型,代表WebContents的唯一标识(unique ID)。
contents.session
A Session used by this webContents.
contents.hostWebContents
A WebContents instance that might own this WebContents.
contents.devToolsWebContents
A WebContents of DevTools for this WebContents.
Note: Users should never store this object because it may become null when the DevTools has been closed.
contents.debugger
WebContents的 Debugger实例。
