在我的节点服务器上收到http post请求后执行脚本?

时间:2016-01-13 16:53:27

标签: javascript node.js http

我有一个节点服务器,可以从我的chrome扩展中收到http POST消息。

javascript:

  function RecieveMessage(req, res) {
    console.log("got the message"
     }

我想知道在RecieveMessage函数收到消息时如何执行节点服务器上保存的另一个JS文件?最好的方法是什么?

1 个答案:

答案 0 :(得分:1)

除非我误解,否则应该这样做:

var otherFile = require('./otherfile.js');
...
function RecieveMessage(req, res) {
  console.log("got the message");
  otherFile(args);
}

你的`otherfile.js'应该公开这样的主要功能:

module.exports = function (args) {
  // Your code goes in here
};