Электронный набор печенья - PullRequest
0 голосов
/ 27 апреля 2018

Я новичок в электронике и преобразовываю веб-приложение в настольное приложение. Я загружаю страницы из файловой системы. Файлы cookie работают, если страницы обслуживаются с веб-сервера, но когда я загружаю страницы из локальной папки, я не могу их сохранить. , Я сохраняю cookie, используя document.cookie в сети. Я хочу знать, как я могу включить file: // cookies в электронном виде.

Привет

Ответы [ 3 ]

0 голосов
/ 28 мая 2018

Ну, я хочу ответить на мой вопрос, если у кого-то возникла такая же проблема. Я исправил проблему с cookie с помощью registerStandardSchemes. Пример кода следующий: код работает и для сохранения файлов cookie с веб-страниц

protocol.registerStandardSchemes(["app"], {
 secure: true
  });

и на готовом событии

protocol.registerFileProtocol('app', (request, callback) => {
const urls = request.url.substr(6)
//console.log(path.normalize(`${__dirname}/${url}`));
const parsedUrl = url.parse(urls);
// extract URL path
let pathname = `.${parsedUrl.pathname}`;
// based on the URL path, extract the file extention. e.g. .js, .doc, ...
const ext = path.parse(pathname).ext;
if (getDevMode()) {
  console.log(parsedUrl.pathname);
}
callback({
   path: path.normalize(`${__dirname}/${parsedUrl.pathname}`)
   })
   }, (error) => {
    if (error) console.error('Failed to register protocol')
  });
0 голосов
/ 26 июля 2019

ОК, я начал работать с Electron 5. Ниже приведены соответствующие биты, основанные на решении @ zahid-nisar, а ниже приведен полный пример файла Electron main.js, чтобы показать, как все это сочетается. Очевидно, измените местоположение вашего приложения в mainWindow.loadURL('app://www/index.html');.

Соответствующий код для вставки в main.js:

const { protocol } = require('electron');

protocol.registerSchemesAsPrivileged([{
    scheme: 'app',
    privileges: {
        standard: true,
        secure: true
    }
}]);

Внутри app.on('ready') Функция:

protocol.registerFileProtocol('app', (request, callback) => {
        const url = request.url.substr(6);
        callback({
            path: path.normalize(`${__dirname}/${url}`)
        });
    }, (error) => {
        if (error) console.error('Failed to register protocol');
    });
});

Затем, внутри вашей функции createWindow, загрузите ваше приложение так:

mainWindow.loadURL('app://www/index.html');

И, наконец, вот полный пример файла main.js с приведенным выше кодом (плюс дополнительные материалы, которые мне нужны, например, Service Worker):

// Modules to control application life and create native browser window
const {
    app,
    protocol,
    BrowserWindow
} = require('electron');
const path = require('path');

// This is used to set capabilities of the app: protocol in onready event below
protocol.registerSchemesAsPrivileged([{
    scheme: 'app',
    privileges: {
        standard: true,
        secure: true,
        allowServiceWorkers: true,
        supportFetchAPI: true
    }
}]);

// 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;

function createWindow() {
    // Create the browser window.
    mainWindow = new BrowserWindow({
        width: 800,
        height: 600
        //, webPreferences: {
        //     preload: path.join(__dirname, 'preload.js')
        // }
    });

    // and load the index.html of the app.
    mainWindow.loadURL('app://www/index.html');
    // DEV: Enable code below to check cookies saved by app in console log
    // mainWindow.webContents.on('did-finish-load', function() {
    //     mainWindow.webContents.session.cookies.get({}, (error, cookies) => {
    //       console.log(cookies);
    //     });
    // });

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

    // Emitted when the window is closed.
    mainWindow.on('closed', function () {
        // 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', () => {
    protocol.registerFileProtocol('app', (request, callback) => {
        const url = request.url.substr(6);
        callback({
            path: path.normalize(`${__dirname}/${url}`)
        });
    }, (error) => {
        if (error) console.error('Failed to register protocol');
    });
    // Create the new window
    createWindow();
});

// Quit when all windows are closed.
app.on('window-all-closed', function () {
    // On macOS 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', function () {
    // On macOS 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 require them here.
0 голосов
/ 27 апреля 2018

Следуйте документации, чтобы сделать это, и используйте стандарт. https://electronjs.org/docs/api/cookies

  const {session} = require('electron')

      // Query all cookies.
      session.defaultSession.cookies.get({}, (error, cookies) => {
        console.log(error, cookies)
      })

      // Query all cookies associated with a specific url.
      session.defaultSession.cookies.get({url: 'http://www.github.com'}, (error, cookies) => {
        console.log(error, cookies)
      })

      // Set a cookie with the given cookie data;
      // may overwrite equivalent cookies if they exist.
      const cookie = {url: 'http://www.github.com', name: 'dummy_name', value: 'dummy'}
      session.defaultSession.cookies.set(cookie, (error) => {
        if (error) console.error(error)
      })
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...