在打包我的Angular 2 Electron App时,路线不再有效

时间:2017-01-05 03:34:13

标签: angular electron electron-builder

当我使用ng build或ng服务运行我的Angular 2 Electron项目时,它可以100%运行所有路由器,一切正常。 当我开始尝试用电子打包器或构建器打包我的应用程序时,我得到的路线不再有效。而不是加载Index.html然后立即导航到我的家庭组件它停留在索引。甚至我的scss样式表都没有工作,应立即加载。

的index.html

<!doctype html>
<html>
<head>
  <meta charset="utf-8">
  <title>App</title>
  <script>
    document.write('<base href="' + document.location + '" />');
  </script>

  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="icon" type="image/x-icon" href="favicon.ico">

  <script>window.$ = window.jQuery = require('./public/jquery/dist/jquery.min.js');</script>
  <script src="./public/bootstrap/dist/js/bootstrap.min.js"></script>
         <!-- Latest compiled and minified CSS -->
  <link rel="stylesheet" href="./public/bootstrap/dist/css/bootstrap.min.css">
                <!-- Optional theme -->
  <link rel="stylesheet" href="./public/bootstrap/dist/css/bootstrap-theme.min.css">

</head>
<body>

//The App-root loads from the routes and loads up my home component
  <app-root>
    Loading...
  </app-root>
</body>
</html>

main.js

const electron = require('electron');
const app = electron.app;
const BrowserWindow = electron.BrowserWindow;

let mainWindow;

function createWindow () {
mainWindow = new BrowserWindow({
 width: 1024, height: 768,
 title:"App"
});


mainWindow.setFullScreen(true);

mainWindow.loadURL(`file://${__dirname}/index.html`);
mainWindow.webContents.openDevTools();
mainWindow.on('closed', function () {
 mainWindow = null;
})
}
app.on('ready', createWindow);
app.on('window-all-closed', function () {
if (process.platform !== 'darwin') {
 app.quit();
}
})

app.on('activate', function () {
if (mainWindow === null) {
 createWindow();
}
})

1 个答案:

答案 0 :(得分:1)

href="' + document.location + '"

应该是:

  href="./" 

这对我有用,请参阅here

相关问题