我正在尝试导航到我的电子应用中的另一个页面。出于某种原因,require('./src/auth-renderer.js')
中的auth.html
指向导航完成后的无效路径。有什么想法吗?
我有以下文件夹结构:
|- src
|-- auth.html
|-- auth-renderer.js
main.js
index.html
renderer.js
我的代码:
mainWindow.loadURL(url.format({
pathname: path.join(__dirname, 'index.html'),
protocol: 'file:',
slashes: true
}))
mainWindow.webContents.on('did-finish-load', () => {
mainWindow.loadURL(url.format({
pathname: path.join(__dirname, 'src/auth.html'),
protocol: 'file:',
slashes: true
}));
})
auth.html:
<html>
<body>
<script>
require('./src/auth-renderer.js')
</script>
</body>
</html>