标签: node.js cmd
This is the NodeJs code
This is the error in CMD
答案 0 :(得分:0)
您正尝试访问仅声明为未定义的myRequest.url。 (因此它没有可以访问的url属性)。
我认为您应该使用参数req代替,那就是服务器正在处理的请求。
应该是:
http.createServer(function(req,res){ var myRequest = req;
,其余的代码应该可以工作。