TypeError:“ listener”参数必须是一个函数:http.createServer

时间:2018-12-15 17:09:53

标签: node.js

当我尝试在http.createServer中使用options时:

http.createServer({
  IncomingMessage: http.IncomingMessage,
  ServerResponse: http.ServerResponse
}, (req, res) => {
 // use req, res
});

我收到一个错误:TypeError: "listener" argument must be a function。 是节点的错误吗?

0 个答案:

没有答案