学习electron过程中发现有很多API,官方文档直接展示英文,写个简便目录留以自用。
官网
建立窗口功能需要在app实现ready后才能调用。没有app的ready,系统会报错。
案例:
//此段代码可以执行
const {app, BrowserWindow } = require('electron')
function create(){
const top = new BrowserWindow()
const child = new BrowserWindow({ parent: top })
child.show()
top.show()
}
app.whenReady().then(create)
//此段报错
const {BrowserWindow } = require('electron')
const top = new BrowserWindow()
const child = new BrowserWindow({ parent: top })
child.show()
top.show()
![在这里插入图片描述](https://img-blog.csdnimg.cn/4cca1ebe0cc04e63afe3018b0b819a55.png
不同平台存在细微差别。
官网
在BrowserWindow界面中添加额外的内容,嵌入行为。
可以使用参数定义各种类型窗口,能够通过判断各类事件触发后续操作。存在一系列实例方法。
参考链接
const { clipboard } = require('electron')
clipboard.writeText('Example string', 'selection')
console.log(clipboard.readText('selection'))
app.whenready后执行该模块功能
https://www.electronjs.org/zh/docs/latest/api/crash-reporter
const { app,dialog } = require('electron')
function fun(){
console.log(dialog.showOpenDialog({
properties: ['openFile', 'multiSelections']
})
)
}
app.whenReady().then(fun)
app.whenReady()后执行
可以建立channel,通过这个channel交互。
const { app,Menu, shell, ipcMain, BrowserWindow } =require('electron');
// normal (常规菜单项)
// separator (分割线)
// submenu (子菜单)
// checkbox (复选菜单项)
// radio (单选菜单项)
// 创建 menu
app.on('ready',()=>{
createMainWindow()
createMenu()
})
function createMainWindow(){
const win = new BrowserWindow({
height:800,
width:600
})
}
function createMenu() {
const template = [
{
label: '原生应用菜单演示',
submenu: [
],
},
{
label: '文件',
submenu: [
{
label: '打开',
accelerator: 'ctrl+q',
click() {},
},
{
label: '保存',
click() {
},
},
{
type: 'separator', // 分割线
},
{
label: '打印',
click() {},
},
],
},
{
label: '编辑',
submenu: [
{
label: '撤销',
role: 'undo',
},
],
},
{
label: '视图',
submenu: [
{
label: '全屏',
role: 'togglefullscreen',
},
],
},
{
label: '帮助',
submenu: [
{
label: '关于',
click() {
shell.openExternal('https://www.baidu.com');
},
},
],
},
];
let menu = Menu.buildFromTemplate(template)
Menu.setApplicationMenu(menu)
}
引用文章1
引用文章2
api组件都很像node.js
除指定方法,其余需在app.whenready后执行
方法:
powerSaveBlocker.start(type)
type string - 阻止方式:
事件&属性:https://www.electronjs.org/zh/docs/latest/api/process
https://www.electronjs.org/zh/docs/latest/api/screen
const { app, BrowserWindow } = require('electron')
function fun()
{
win = new BrowserWindow({ width: 800, height: 1500 }),
win.loadURL('http://baidu.com'),
contents = win.webContents,
console.log(contents)
}
app.whenReady().then(fun)
官方链接
const { app, BrowserWindow,webFrameMain } = require('electron')
function fun()
{
win = new BrowserWindow({ width: 800, height: 1500 }),
win.loadURL('http://baidu.com'),
win.webContents.on(
'did-frame-navigate',
(event, url, httpResponseCode, httpStatusText, isMainFrame, frameProcessId, frameRoutingId) => {
const frame = webFrameMain.fromId(frameProcessId, frameRoutingId)
if (frame) {
const code = 'document.body.innerHTML = document.body.innerHTML.replaceAll("heck", "h*ck")'
frame.executeJavaScript(code)
}
}
)
}
app.whenReady().then(fun)
const { app,BrowserWindow } = require('electron')
async function main () {
const win = new BrowserWindow({ width: 800, height: 600 })
await win.loadURL('https://baidu.com')
const youtubeEmbeds = win.webContents.mainFrame.frames.filter((frame) => {
try {
const url = new URL(frame.url)
return url.host === 'www.youtube.com'
} catch {
return false
}
})
console.log(youtubeEmbeds)
}
app.whenReady().then(main)
做通信的时候常用,暴露一个electron下的api。
与ipcMain有些类似。