举个最简单的例子 http.createServer(function(request,response){});
我查看http模块是有createServer这个函数,也知道它有个参数 http.createServer([requestListener]) The requestListener is a function which is automatically added to the 'request' event.
问题是 我怎么知道里面这个函数的参数(我怎么知道似乎request和response,两个参数)有哪些,从
哪里的帮助文档可以看到
谢谢哈