node.js - Electron 关闭按钮不起作用

标签 node.js electron

我正在尝试使用 Electron(以前称为 Atom Shell)创建一个应用程序。此应用程序 package 了一个 AngularJS 应用程序并与在 nodejs 中创建的端点交互以编辑和保存 HTML 内容。我能够毫无问题地创建应用程序。

当我尝试从 Electron 访问“/saveContent”时,关闭按钮(Windows 在右上角关闭)变得无响应,但是最小化和最大化工作正常,没有问题。如果我通过 Electron 访问任何其他端点,则不会出现此问题。我已经尝试过同步文件写入和其他方式。所以我假设 main.js 中的“/saveContent”是问题的原因。

如果我在“Windows 任务管理器”中结束 node.exe,这将关闭整个应用程序。

主要流程代码如下

'use strict';
var fs = require("fs");
const util = require('util')

var cheerio = require("cheerio");

var express = require('express');
var exapp = express();

var bodyParser = require('body-parser');
var urlencodedParser = bodyParser.urlencoded({extended: false});
exapp.use(bodyParser.json());

const electron = require('electron');
const app = electron.app;  // Module to control application life.
const BrowserWindow = electron.BrowserWindow;  // Module to create native browser window.
const path = require('path')
const url = require('url')
var mainWindow = null;



app.on('ready', function() {
  mainWindow = new BrowserWindow({width: 1280, height: 900, title: "2018JL", "nodeIntegration":false});
  //mainWindow.loadURL(__dirname + '/app/index.html');
  mainWindow.loadURL('http://localhost:5001/');

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

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


exapp.get('/editPage', function(req,res){
    if(req){
    //console.log("req.query.editURL  "+ req.query.editURL);
        var url = req.query.editURL;
        var editURL = path.join(__dirname + '/app/views'+ url+".html");

        fs.exists(editURL, function(fileok){
            if(fileok){
            fs.readFile(editURL, 'utf8', function (err, data) {
               if (err) {
                    console.log("error.... "+ err);
                    return console.error(err);
               }
               //console.log("data "+ editURL);
               res.send(JSON.stringify({path:editURL, content:data}));
            });
            }else{
                console.log("file not found");
            }
        });
    }
});

exapp.post('/saveContent', function (req, res) {
    //console.log(util.inspect(req, false, null))
    if (req) {
        //console.log(req.query.url + " ------  " + req.query.content);

        var $ = cheerio.load(req.query.content);
        var htmlContent = $('body').children();

        console.log('htmlContent  '+htmlContent);

        fs.writeFile(req.query.url, htmlContent,  function(err) {
           if (err) {
               res.send("Error");
           }
           console.log("End of write file");
           res.send("success");
        });
    }
    console.log("End of function .....");
});

exapp.get('/test', function (req, res) {
    res.send("Test success ");
});


exapp.use(express.static(__dirname + '/app'));
exapp.listen(process.env.PORT || 5001);

客户端代码如下

$scope.editPage = function () {
            $http({method: "GET",
                url: "/editPage",
                params: {editURL: $location.path()}
            }).then(function success(response) {
                //var result = JSON.parse(response.data);
                //console.log("HTTP Success "+response.data.path);
                $scope.showEditor = true;
                $scope.editURL = response.data.path;
                tinymce.get('contentEditor').setContent(response.data.content);
            }, function error(response) {
                console.log("HTTP Error " + response.statusText);
            });
        };

在“/saveContent”中注释文件写入代码不会导致 Electron 关闭按钮变得无响应。

最佳答案

我将 mainWindow 的代码替换为如下所示并且工作正常

    mainWindow.on('close', function(e) { 
        e.preventDefault();
        mainWindow.destroy();
    });

https://github.com/electron/electron/blob/master/docs/api/browser-window.md#windestroy

关于node.js - Electron 关闭按钮不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41937111/

相关文章:

node.js - 使用 Node.js 向用户时间线发送推文

node.js - 尽管在 NodeJS 和 SQLite3 中格式良好,但 JSON 值返回为 'undefined'

javascript - Node JS 中的内存错误 (node::smalloc::Alloc)

javascript - 没有exe文件的Spectron和Electron

javascript - Electron 保存对话框指定文件类型

node.js - 使用 typeorm 创建通用存储库

node.js - MongoDB mongoose 多对多关系

vue.js - Electron App中的Websocket客户端延迟接收

javascript - Electron - 为什么与 HTML 文件相比,通过本地主机加载主窗口时会有很大的延迟?

javascript - Electron :如何执行捆绑文件?