如何将数据从browserWindow
传递到modal
?
我在渲染器过程中具有openModal()
函数,并且我想传递诸如openModal(data)
之类的数据。
如何访问模态中传递的数据?
function openModal(data) {
let win = new remote.BrowserWindow({
parent: remote.getCurrentWindow(),
width: 600,
height: 400
});
var theUrl = "file://" + __dirname + "/modal.html";
win.setMenu(null);
win.loadURL(theUrl);
}
openModal(data);