Electron+React历险记(1)

React+Electron+TS下引用ipcRenderer及node api
引入方式一(存在安全问题)
类型声明
//global.d.ts
declare global {
interface Window {
require: (module: 'electron') => {
ipcRenderer: IpcRenderer
};
}
}

main.ts引入
win = new BrowserWindow({
width: 980,
height: 735,
webPreferences: {
nodeIntegration: true,
contextIsolation: false,
},
frame: false,
// resizable:false,
titleBarSty

Electron+React历险记(1)最先出现在Python成神之路

版权声明:
作者:cc
链接:https://www.techfm.club/p/12504.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>