如何在Express.JS中的“ app.post”之后发送回客户端

时间:2019-06-24 22:11:58

标签: javascript express

我目前正在开发一个部署管道,该管道可以服务于以chrome扩展运行的文本摘要式深度学习模型,该模型可以总结浏览器中突出显示的文本块。

我的简单正面如下所示,是用纯JavaScript编写的

chrome.tabs.executeScript( {
    code: "window.getSelection().toString();"
}, function(selection) {

    document.write(selection[0]);

    var post =
        '<form action="http://localhost:8080/client_txt" method="POST" id="hlgt_form">' +
        '<input type="hidden" id="hlgt" name="hlgt" value="">' +
        '</form>';

    document.write(post);

    document.getElementById('hlgt').value = selection[0];
    // it stores highlights into value of <input>

    document.getElementById('hlgt_form').submit();
});

我的Express.JS服务器如下

const express = require('express');
const bodyParser = require('body-parser');
const app = express();

const python = require('python-shell');

// define conda specific python
const python_path = '/Users/****/anaconda3/envs/****/bin/python';

// define sysArgs for python script
const mode = "decode";
const data_path = "/Users/****/Downloads/finished_files/chunked/test_000.bin";
const vocab_path = "/Users/****/Downloads/finished_files/vocab";
const log_root = "/Users/****/Downloads";
const exp_name = "pretrained_model_tf1.2.1";


app.use(bodyParser.urlencoded({ extended: true }));

app.post('/client_txt', (req, ) => {

    const text = `${req.body.hlgt}`;

    console.log(text);

    /* python runs in express js */
    const options = {
        mode: 'text',
        pythonPath: python_path,
        pythonOptions: ['-u'],
        scriptPath: '/Users/****/project/text-summarizer/',

        args: [ '--hlgt', text,
                '--mode', mode,
                '--data_path', data_path,
                '--vocab_path', vocab_path,
                '--log_root', log_root,
                '--exp_name', exp_name,
                '--max_enc_steps', 400,
                '--max_dec_steps', 120,
                '--coverage', 1,
                '--single_pass', 1,
                '--batch_size', 1,
                '--beam_size', 1]

    };
    //TODO: Get return val from python script not print val
    python.PythonShell.run('run_summarization.py',
        options,
        function (err, results) {
        if (err)
            throw err;
        console.log("\n ## summary ##\n" +
            results[results.length-1] + "\n"); // python "print" val stored in results
    });


    /******************************/

});

const port = 8080;

app.listen(port, () => {
    console.log(`Server running on port: ${port}`);
});

服务器端从突出显示的前端获取发布的文本,并将其传递给深度学习python代码,其文本为sysarg

result具有一个python终端打印输出,最后一个是摘要的文本字符串。

我想将结果发送回客户。

我应该添加什么?我可以继续使用post方法吗?

1 个答案:

答案 0 :(得分:2)

您只需要添加响应部分。

sudo

更改为

app.post('/client_txt', (req, ) => {