我最近在这里问了很多问题,因为我不断陷入节点和数据库的不同部分。
无论如何,有点背景:
我有一个带有AngularJS前端的Electron应用程序。所以在事物的电子方面,我实际上启动了一个快速服务器,它服务于我的角应用程序,当然可以通过ipc与电子交谈。我也使用快速的东西来做数据库的东西(sqlite3),定义一个api的路由,Angular可以使用$ http命中,并以这种方式返回db结果。当我使用  npm start'运行应用程序时,一切正常。 db / server方面的代码如下:
var path = require('path');
var express = require('express');
var app = express();
var fs = require('fs');
var bodyParser = require('body-parser');
var path = require('path');
var sqlite3 = require('sqlite3').verbose();
// Load the db
function createDbFile() {
// Try to open the db file - if it doesn't exist, create it.
try {
var filebuffer = fs.readFileSync(path.join(__dirname, 'app.db'));
}
catch (err) {
if (err.code === 'ENOENT') {
fs.closeSync(fs.openSync(path.join(__dirname, 'app.db'), 'w'));
}
else {
throw err;
}
}
}
createDbFile();
var db = new sqlite3.Database('app.db');
var check;
db.serialize(function() {
db.run("CREATE TABLE IF NOT EXISTS lorem (info TEXT)");
var stmt = db.prepare("INSERT INTO lorem VALUES (?)");
for (var i = 0; i < 10; i++) {
stmt.run("Ipsum " + i);
}
stmt.finalize();
});
app.use(express.static(__dirname));
// app.use(bodyParser.json());
app.get('/', function (req, res) {
res.sendFile(__dirname + 'index.html');
});
app.get('/loading', function (req, res) {
res.sendFile(__dirname + '/loading.html');
});
app.get('/api/get/all', function (req, res) {
db.all("SELECT * FROM lorem", function(err, row) {
res.json(row);
});
});
app.post('/api/post/site', function (req, res) {
// Do stuff here.
});
app.listen(3333);
除此之外,还有我的main.js文件,它需要这个server.js文件:
const electron = require('electron');
const server = require("./server");
const ipcMain = require('electron').ipcMain;
const app = electron.app;
const BrowserWindow = electron.BrowserWindow;
// Define our global references
let mainWindow,
loadingScreen,
windowParams = {
width: 1000,
height: 700,
show: false
},
loadingWindowParams = {
width: 400,
height: 300,
show: false,
frame: false
};
// Define our loading window whose parent is main
function createLoadingScreen() {
loadingScreen = new BrowserWindow(Object.assign(loadingWindowParams, {parent: mainWindow}));
loadingScreen.loadURL('http://localhost:3333/loading');
loadingScreen.on('closed', () => loadingScreen = null);
loadingScreen.webContents.on('did-finish-load', () => {
loadingScreen.show();
});
}
app.on('ready', () => {
// Create loading screen
createLoadingScreen();
// Create the browser window.
mainWindow = new BrowserWindow(windowParams);
// Point to our express server
mainWindow.loadURL(`http://localhost:3333`);
// Open the DevTools.
mainWindow.webContents.openDevTools();
// Simulate loading to allow angular to initialize, then show main window
mainWindow.once('ready-to-show', () => {
if (loadingScreen) {
setTimeout(function() {
loadingScreen.close();
mainWindow.show();
}, 6000);
}
});
// Close the app after window closed for security purposes
mainWindow.on('closed', function () {
mainWindow = null
app.quit();
});
// Handle messages
ipcMain.on('electron-msg', (event, msg) => {
switch (msg.type) {
case 'system':
mainWindow.webContents.send('electron-msg', 'Message received');
break;
}
});
});
// Quit when all windows are closed.
app.on('window-all-closed', function () {
if (process.platform !== 'darwin') {
app.quit()
}
});
// Open window again when activated
app.on('activate', function () {
if (mainWindow === null) {
// Not currently needed, we quit when window closed
}
});
// Throw our errors
process.on('uncaughtException', function (err) {
console.log(err);
});
我遇到的问题是,当我使用https://github.com/electron-userland/electron-builder打包我的应用程序,应用程序功能,服务器旋转并且Angular组件正常工作,但我无法读取/写入/创建我可以在打包之前使用数据库文件。我现在最终还不知道在哪里看!
答案 0 :(得分:2)
在我的头靠在我的桌子上一段时间后,我几乎意外地设法解决了这个问题。我试图实现一些日志记录,以查看在打包时是否存在节点模块无法正确识别的问题,当我发现日志文件没有被创建到我期望它的位置时 - 它是在外部创建的实际的应用程序目录,因此无法访问。我的数据库文件也发生了同样的事情。
见下面的修复:
var db = new sqlite3.Database(__dirname + '/app.db');
在db文件定义中添加__dirname修复了问题!