contextBridge.exposeInMainWorld('myApi', { downloadNow:(msg)=> ipcRenderer.send('window-downloadNow', msg), }); 如何在 downloadNow:(msg)=> ipcRenderer.send('window-downloadNow', msg), 中做 console.log 输出msg
时间: 2023-11-28 14:05:50 浏览: 88
StarWarsBlog-MyApi-2:StarWarsBlog + MyApi 2
您可以在该行代码之前添加一个 `console.log`,以便在发送消息之前记录 `msg` 的值,如下所示:
```
console.log(msg);
downloadNow:(msg)=> ipcRenderer.send('window-downloadNow', msg),
```
这将在控制台中输出 `msg` 的值,并且不会对代码的功能产生任何影响。
阅读全文