web-dev-qa-db-ja.com

javascript経由でelectronアプリを閉じる方法は?

Electron経由でエクスプレスアプリを実行しています。

以下はmain.jsです

   const electron = require("electron"),
          app = electron.app,
          BrowserWindow = electron.BrowserWindow;

    let mainWindow;

    function createWindow () {
      mainWindow = new BrowserWindow({
          width: 1200,
        height: 800,
        frame: false,
        kiosk: true
      });
      mainWindow.loadURL(`file://${__dirname}/index.html`)
     mainWindow.webContents.openDevTools();

      mainWindow.on("closed", function () {
        mainWindow = null;
      })
    }

    app.on("ready", createWindow);
    app.on("browser-window-created",function(e,window) {
      window.setMenu(null);
    });

    app.on("window-all-closed", function () {
      if (process.platform !== "darwin") {
        app.quit();
      }
    });



    app.on("activate", function () {
      if (mainWindow === null) {
        createWindow();
      }
    });

下にあるビューのボタンをクリックすると、アプリを閉じることができます

<button id="close-btn"><i class="fa fa-cube" aria-hidden="true"></i>&nbsp; Close application</button>

基本的に、ボタンがクリックされたら、コードのこの部分をアクティブにします

  app.on("window-all-closed", function () {
          if (process.platform !== "darwin") {
            app.quit();
          }
        });
12
John

使用できます

const remote = require('electron').remote
let w = remote.getCurrentWindow()
w.close()

アプリを閉じます。

jQueryを使用している場合

const remote = require('electron').remote
$('#close-btn').on('click', e => {
    remote.getCurrentWindow().close()
})

vue.jsを使用している場合

<template>
    <button @click="close"><i class="fa fa-cube" aria-hidden="true"></i>&nbsp; Close application</button>
</template>

<script>
    const remote = require('electron').remote

    export default{
        data(){
            return {
                w: remote.getCurrentWindow(),
            }
        },
        methods: {
            close() {
                this.w.close()
            }
        }
    }
</script>
23
Frank He

以下の行を使用してアプリを閉じます。

window.close()

11
Alocus

app.exit を使用することもできます。

app.exit(0)

これは、イベントリスナーをバイパスし、アプリ全体をすぐに強制終了するようです。 (それがあなたが望むものであることを確認してください!)

1
Kip

main.jsで

function createWindow(){
win =new BrowserWindow({
    icon:'./img/code_file.ico',
    frame:false
});
win.maximize();

win.loadURL(url.format({
    pathname:path.join(__dirname,'./login.html'),
    protocol:'file:',
    slashes:true
}));
  // Emitted when the window is closed.
  win.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.
    win = null
  });
}
app.on('ready',createWindow);
app.on('Window-all-closed',()=>{
if(process.platfrom!=='drawin'){
app.quit();
}
});
}

すべてのウィンドウが閉じられると、app.quit()関数がアプリケーションを閉じました。

0
Abhi