admin管理员组文章数量:1341686
I am using electron 6.10.0 and using React.js.
In my app, there is an add task option in menu, which creates a new window.
Everything works fine during development, but during production this line causes problem.
addWindow.loadURL(isDev ? 'http://localhost:3000/add' : `file://${path.join(__dirname, '../build/index.html')}`);
It loads index.html, through which it loads index.js and which renders router.js. This is the code in Router.js.
<HashRouter>
<Switch>
<Route exact path="/" ponent={App} />
<Route exact path="/add" ponent={addWindow} />
</Switch>
</HashRouter>
Mainwindow works fine because the hash is ' / ' but for add window the hash doesn't change and it loads the mainwindow content again in addwindow.
How to use the route/Router during production, or is there any other way around.
Thanks in advance.
I am using electron 6.10.0 and using React.js.
In my app, there is an add task option in menu, which creates a new window.
Everything works fine during development, but during production this line causes problem.
addWindow.loadURL(isDev ? 'http://localhost:3000/add' : `file://${path.join(__dirname, '../build/index.html')}`);
It loads index.html, through which it loads index.js and which renders router.js. This is the code in Router.js.
<HashRouter>
<Switch>
<Route exact path="/" ponent={App} />
<Route exact path="/add" ponent={addWindow} />
</Switch>
</HashRouter>
Mainwindow works fine because the hash is ' / ' but for add window the hash doesn't change and it loads the mainwindow content again in addwindow.
How to use the route/Router during production, or is there any other way around.
Thanks in advance.
Share Improve this question edited Sep 25, 2019 at 8:06 CVKM asked Sep 25, 2019 at 7:02 CVKMCVKM 1231 silver badge7 bronze badges3 Answers
Reset to default 6In my case, I had a problem with a hash fragment in a path that is encoded as /build/index.html%23add
, and that file/url doesn’t exist.
I added hash
property to url format and all works fine.
const path = require('path')
const url = require('url')
url.format({
pathname: path.join(__dirname, 'index.html'),
hash: '/add',
protocol: 'file:',
slashes: true
})
Ok, I solved it by adding #/add at the end of the link, like this:
addWindow.loadURL(isDev ?
'http://localhost:3000/add' :
`file://${path.join(__dirname, '../build/index.html#/add')}`);
I had the same issue while trying to build electron/react app. url.format() works like a charm but unfortunately it's deprecated since node v11. I made a simple helper function that uses new URL class syntax.
const isDev = require('electron-is-dev');
const { URL } = require('url');
// Define React App dev and prod base paths
const devBasePath = 'http://localhost:3000/';
const prodBasePath = `file://${__dirname}/build/index.html`;
const constructAppPath = (hashRoute = '') => {
const basePath = isDev ? devBasePath : prodBasePath;
const appPath = new URL(basePath);
// Add hash route to base url if provided
if (hashRoute) appPath.hash = hashRoute;
// Return the constructed url
return appPath.href;
};
console.log('initial path', constructAppPath());
console.log('hash path', constructAppPath('/example/path'));
本文标签: javascriptHow to route in electron react app during productionStack Overflow
版权声明:本文标题:javascript - How to route in electron react app during production - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743625936a2512286.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论