0
我需要從devtools中觸發此事件。它從使用mainWindow.webContents.send('get-holdings', 'get holdings!');
觸發電子BrowserWindow中devtools的ipcRenderer事件
主要過程(js
)呼籲時,我有webPrefences
鑲有nodeIntegration: false
如果nodeIntegration
設置爲true
因爲有jquery
和angular
錯誤觸發。
對於調試,我想從devtools控制檯執行它。我正在尋找需要放入devtools控制檯的代碼來觸發get-holdings
事件。
ipcRenderer.on('get-holdings', (event, arg) => {
var holdings;
$.getJSON('https://example.com/api/holdings', function(res){
holdings = res.data;
console.log(holdings);
ipcRenderer.send('save-holdings', holdings);
});
console.log(arg);
})
請幫忙!