相关疑难解决方法(0)

如何使用电子反应路由器?

使用此样板作为参考,我创建了一个Electron应用程序.它使用webpack捆绑脚本并表达服务器来托管它.

的WebPack配置是实质上相同的这个和服务器这样.

Electron的脚本加载:

mainWindow.loadURL('file://' + __dirname + '/app/index.html');

index.html加载服务器托管的脚本:

<script src="http://localhost:3000/dist/bundle.js"></script>

我运行electron index.js构建应用程序并node server启动使用webpack捆绑脚本的服务器.

它工作正常,我的React组件App已安装.但是我如何将react-router集成到这个中呢?

我以与在浏览器应用程序中相同的方式实现它.我收到此错误:

[react-router] Location "/Users/arjun/Documents/Github/electron-app/app/index.html" did not match any routes

它将文件路径作为路径.通过锅炉板代码没有帮助.我错过了什么?

javascript reactjs react-router electron

32
推荐指数
6
解决办法
2万
查看次数

标签 统计

electron ×1

javascript ×1

react-router ×1

reactjs ×1