如何检查我的 Bokeh 服务器应用程序是否已完全加载和呈现?

How to check if my Bokeh Server Application is completely loaded and rendered?

我想将我的 Bokeh 服务器应用程序集成到 Electron 中。所以我所做的是 运行 散景服务器使用 python-shell 像这样

mainWindow = new BrowserWindow({
    width: 1000,
    height: 700,
    show: false,
})

var PythonShell = require('python-shell');
var options = {
    mode: 'text',
    pythonPath: 'python3',
    pythonOptions: ['-m'],
    scriptPath: '',
    args: ['serve','bokeh_project/']
};

PythonShell.run('bokeh', options, function (err, results) {
    if (err) throw err;
    console.log('results: %j', results);
});

mainWindow.loadURL('http://localhost:5006');

mainWindow.once('did-finish-load', () => {
    mainWindow.show()
})

这里的问题是 window 永远不会弹出,因为 electron 没有检测到服务器已加载。

我找到了很多解决方法。我还在等待最终的解决方案。

解决方法 1

所以我不得不添加此 setTimeout 作为解决方法。如果我不使用这个页面将永远卡住。

setTimeout(function () {
    mainWindow.show();
    mainWindow.loadURL('http://localhost:5006');
}, 3000);

解决方法 2

它检查散景端口是否仍然关闭。但是元素可能没有加载和完全加载

var portscanner = require('portscanner')
var _checkServerStatus = setInterval(function() {
  portscanner.checkPortStatus(5006, '127.0.0.1', function(error, status) {
    if (status == 'open') {  // status = 'open' or 'close'
        clearInterval(_checkServerStatus);
        console.log('Server running');
        mainWindow.loadURL(bokehUrl); 
    }
  });
}, 100);  

解决方法 3

最后我找到了另一种解决方法来检查是否所有元素都已完全呈现。答案在:

oldLog = console.log;
console.log = function (message) {
    if(message.localeCompare('Bokeh items were rendered successfully') == 0){
        window.top.postMessage('show-bokeh-iframe', '*')
        console.log = oldLog;
    }
    oldLog.apply(console, arguments);
};

解决方法 4

有个GH issue where where the writer ask for calling a callback when bokeh is completely loaded and rendered. The user foobarbecue suggests to verify if the bokeh page is rendered with ,但我没用过