эйс-электрон не работает с электрон-кузницей - PullRequest
0 голосов
/ 16 сентября 2018

В моем электронном приложении, работающем в Windows 10, шаблоны ejs не отображаются, хотя ошибки не видно. Я могу воспроизвести проблему с помощью приложения, созданного с помощью

electron-forge init ejs-test

Я использую Electron-Forge 5.2.2 и EJS-Electron 2.03. Вот мой файл index.js:

import { app, BrowserWindow } from 'electron'

import * as ejse from 'ejs-electron'

// 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({
    width: 800,
    height: 600,
  })

  ejse.data('testdata', 'Generated throuh EJS')
  // and load the index.html of the app.
  mainWindow.loadFile(`${__dirname}/index.ejs`)

  // Open the DevTools.
  mainWindow.webContents.openDevTools()

  // 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()
  }
})

А вот мой файл index.ejs:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title></title>
  </head>
  <body>
    <%= testdata %>
  </body>
</html>

Когда я запускаю это с npm start

Я не получаю ошибку, но <% = testdata%> отображается как есть, а не подставляется. Вызов ejse.listening () непосредственно перед загрузкой моего файла ejs возвращает true.

Тот же код отлично работает с приложением без кузнечных электронов.

Вы можете помочь?

Проводя еще несколько исследований, я обнаружил, что критическая линия в ejs-электроне

protocol.interceptBufferProtocol('file', protocolListener)

возвращал следующую ошибку: Ошибка: схема была перехвачена

1 Ответ

0 голосов
/ 20 сентября 2018

Это та же проблема, что и 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)
})
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...