You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var id = 123;
win.loadURL('file://'+__dirname+'/detail.html?id='+id);
// 或者
win.loadURL(`file://${__dirname}/detail.html?id=123`)
render2.js
// 从URL中获取参数
var id = getQueryVariable('id');
console.log(id); // 123
function getQueryVariable(variable)
{
var query = window.location.search.substring(1);
var vars = query.split("&");
for (var i=0;i<vars.length;i++) {
var pair = vars[i].split("=");
if(pair[0] == variable){return pair[1];}
}
return(false);
}
一、主进程与BrowserWindow之间传参
可以通过ipc传参,
ipc-main
在主进程中使用,ipc-renderer
在渲染进程中使用。1.主进程向渲染进程传参
参考:https://electronjs.org/docs/api/web-contents#contentssendchannel-arg1-arg2-
main.js
render.js
2.渲染进程向主进程传参
参考:https://electronjs.org/docs/api/ipc-main
render.js
main.js
二、渲染进程间传参(BrowserWindow)
方式一
参考:https://www.cnblogs.com/xuhongli/p/7076533.html
render1.js
render2.js
方式二
render1.js
render2.js
三、页面间数据共享
通过localStorage等方式共享数据,或者在主进程中存储全局变量,然后各个渲染进程调用,参考:https://electronjs.org/docs/faq#how-to-share-data-between-web-pages
The text was updated successfully, but these errors were encountered: