gpt4 book ai didi

jquery - 接收从loadFile发送到 Electron 中的html页面的数据

转载 作者:行者123 更新时间:2023-12-03 12:22:14 25 4
gpt4 key购买 nike

我有main.js页面,在这里我使用mainWindow.loadFile('./app/main.html',options)加载名为main.html的新文件
伴随它,我发送了将数据存储在json结构中的选项。
如何在main.html页面中接收和使用此options数据?
使用loadFile加载其main.html页面。我们如何检索发送的数据?

最佳答案

在HTML页面中,您必须解析窗口的URL
如果您从主流程发送了这些选项

mainWindow.loadFile("./app/main.html"), {
query: { queryKey: "queryValue" },
hash: "hashValue",
});
在您的HTML页面中(渲染过程)
console.log(location.href)   // YOUR_PATH/app/main.html?queryKey=queryValue#hashValue
console.log(location.search) // ?queryKey=queryValue
console.log(location.hash) // #hashValue

// You'll probably want to use URLSearchParams
const params = new URLSearchParams(location.search)
console.log(params.get("queryKey")) // queryValue

关于jquery - 接收从loadFile发送到 Electron 中的html页面的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63827841/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com