我想将电子伪造的角度index.ts文件ipcMain.on()侦听器移到单独的文件中。
如何将ipcMain.on侦听器移到单独的文件中?
index.ts
我想将下面提到的代码从index.ts
移动到其他.ts
文件中以组织代码:
ipcMain.on('get', (event: any, id: any) => {
Employee.findById(id).then((data) => {
event.returnValue = JSON.parse(JSON.stringify(data));
}).catch((error) => {
event.returnValue = JSON.parse(JSON.stringify(error));
})
});
Electron Js成功连接到MongoDb并从Angular客户端应用程序执行CRUD操作