将消息从python-shell发送到Node Express App中的浏览器

时间:2016-01-12 16:52:17

标签: python node.js express socket.io

我有一个快速应用程序,我希望能够通过路由触发python脚本并将日志发送到浏览器。

我创建了一个正确触发python脚本的路由,并使用python-shell模块将日志输出到节点控制台。如何实时将此日志推送到浏览器。

我在index.html页面上有一个按钮,它触发了一个Ajax发布请求到下面的/ python路由。我试图用socket.io来实现它,但还没有设法解决它。 socket.io是前进的方向,请指出正确的方向或者有人推荐替代方案吗?

我的文件布局是:

server.js

var express      = require('express');
var path         = require('path');
var app          = express();
var port         = process.env.PORT || 3000;
var http         = require('http');
var server       = http.createServer(app);
var io           = require('socket.io').listen(server);

/* A bit inbetween */

server.listen(port)

应用程序/ routes.js

var PythonShell = require('python-shell');
var config      = require('../config/config');

module.exports = function(app) {
      app.get('/', function(req, res) {
        res.render('pages/index.ejs', {
            pageTitle: 'Index'
        }); // load the index.ejs file
      });

      app.post('/test', function(req, res) {

          var options = {
               mode: 'text',
               pythonPath: config.pythonPath,
               pythonOptions: ['-u'],
               scriptPath: config.pythonScriptsDirectory
             };

             var pyshell = new PythonShell('printRange.py', options);

             pyshell.on('message', function (message) {
               console.log(message);
             });

         res.sendStatus(200)
      });

}

提前致谢

1 个答案:

答案 0 :(得分:0)

socket.io是一个很好的解决方案。这将负责将消息从服​​务器传递到客户端。您只需将消息发布到服务器端,并在客户端对其进行回调

在服务器端,您将拥有以下内容:

var app = require('express')();
var server = require('http').createServer(app);
var io = require('socket.io')(server);
io.on('connection', function(){ 
  console.log('connected');
});
server.listen(3000);

...

var pyshell = new PythonShell('printRange.py', options);
pyshell.on('message', function (message) {
  if (connected)
     io.emit('logentry',message);
});

在客户端,您将拥有以下内容:

<script src='/socket.io/socket.io.js'></script>

<script>
  var socket = io();
  socket.on('logentry',function(log_entry){
    add_to_html(log_entry); // You need to implement this function.
  });
</script>