当我尝试在http.createServer
中使用options
时:
http.createServer({
IncomingMessage: http.IncomingMessage,
ServerResponse: http.ServerResponse
}, (req, res) => {
// use req, res
});
我收到一个错误:TypeError: "listener" argument must be a function
。
是节点的错误吗?