location.reload () и location.replace (url) не работают в Electron с Angular 6 - PullRequest
0 голосов
/ 20 декабря 2018

Я использую Electron , чтобы перестроить готовое веб-приложение.электрон main.js прост:

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

// 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: 1600, 
        height: 900
  })

  // and load the index.html of the app.
  mainWindow.loadFile('dist/mysite/index.html')

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

когда я использую 'электрон.' запустите приложение, оно работает хорошо, за исключением строки с место .Приведенный ниже код приложения является действием формы отправки логина.После входа в систему есть одна строка 'location.reload ()' не работает:

this.http.post(this.url + ':8000/' + 'auth/jwt/create/', this.validateForm.value)
  .subscribe((res: any) => {
    localStorage.setItem('token', res.token);

// This LINE NOT WORK 
location.reload();
// //////

    // this.router.navigate([this.router.url]);
    // this.router.navigate(['./']);
    console.log(location);
  }, (err: any) => {
    if (err.status === 400) {
      this.msg = err.error.non_field_errors[0];
      console.log(err);
    } else {
      this.msg = err;
      console.log(err);
    }
    this.isVisible = true;
  });

Я пытаюсь разными способами заставить веб перейти на целевой URL, но не получилось. location.reload () location.replace router.navigate все не работает.Когда я использую ng serve и открываю сайт с помощью chrome, у location.reload () проблем нет.И что же мне делать ? Спасибо.

РЕДАКТИРОВАТЬ: после выполнения location.reload () страница становится пустой.и когда console.log(location), href составляет ошибка хрома: // chromewebdata /

console.log(location)  
Location {replace: ƒ, assign: ƒ, href: "chrome-error://chromewebdata/", ancestorOrigins: DOMStringList, origin: "null", …}

Ответы [ 2 ]

0 голосов
/ 08 апреля 2019

Он перестал работать для меня, когда я представил Слушатель для моего browserView.webContents.on('will-navigate', ...);, и я остановил некоторые события, перезагрузка страницы была заблокирована этим.

0 голосов
/ 20 декабря 2018

В Angular вы должны использовать window.location.reload(), потому что window является общим объектом и может получить доступ из любого места, например localStorage.

window.location.reload()

Вы также можете console.log(location) и console.log(window.location) чтобы узнать разницу.

...