Это та же проблема, что и https://github.com/electron-userland/electron-forge/issues/291. Обновление до electronic-forge v6 было слишком сложным, учитывая текущее отсутствие документации, поэтому я нашел обходной путь.
Причина, по которой мне нужно было использовать ejsбыло динамически генерировать мой HTML-код на основе файла сообщений на нескольких языках.Сначала я попытался сгенерировать его динамически и использовать loadURL с протоколом data: text / html.Однако это создает много проблем, потому что html не связан с путем к файлу и, следовательно, с любой ссылкой, например
. Поэтому я обратился к генерации одного html-файла для каждого языка во время сборки и выбрал тот, который нужно загрузить в зависимости отязык во время выполнения.
Итак, два шага: я добавил следующее в свой package.json:
"scripts": {
"build" : "node build.js"
},
и build.js:
const ejs = require('ejs')
const fs = require('fs')
let langs = ['en', 'fr']
langs.forEach((lang) => {
let msgdata = JSON.parse(fs.readFileSync(`${__dirname}/src/messages/${lang}.json`, 'utf8'))
ejs.renderFile(`${__dirname}/src/views/pages/mindmap.ejs`,
{
'messages': msgdata,
'otherlanguage': 'fr',
},
{},
(err, str) => {
fs.writeFileSync(`${__dirname}/src/mindmap-${lang}.html`, str, 'utf8')
})
})
Таким образом, npm run build генерирует столько html-файлов, сколько у меня есть языковых файлов.
Тогда файл index.js моего приложения в значительной степени является электронно-кузнечным:
const { app, BrowserWindow, ipcMain } = require('electron')
const ejs = require('ejs')
const fs = require('fs')
// Handle creating/removing shortcuts on Windows when installing/uninstalling.
if (require('electron-squirrel-startup')) { // eslint-disable-line global-require
app.quit()
}
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let mainWindow
const createWindow = () => {
// Create the browser window.
mainWindow = new BrowserWindow()
// and load the index.html of the app.
mainWindow.loadURL(`file://${__dirname}/mindmap-${lang}.html`)
// Emitted when the window is closed.
mainWindow.on('closed', () => {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
mainWindow = null
})
}
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', createWindow)
// Quit when all windows are closed.
app.on('window-all-closed', () => {
// On OS X it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', () => {
// On OS X it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (mainWindow === null) {
createWindow()
}
})
// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and import them here.
ipcMain.on('request-messages', (event, arg) => {
mainWindow.webContents.send('messages', msgdata)
})