事情是原型未定义,尽管在节点控制台中编写http.IncomingMessage.prototype确实将对象作为输出。任何想法?
var req = Object.create(http.IncomingMessage.prototype)
Uncaught TypeError: Cannot read property 'prototype' of undefined
at http://localhost:62625/____wallaby-bundle.js?1501265946287&wallabyFileId=bundle:219253
答案 0 :(得分:10)
我认为http.IncomingMessage
未定义。
可能发生了http已被覆盖在代码中的某些位置。
var http = require('http');
var req = Object.create(http.IncomingMessage.prototype)
我已经测试了上面的代码并且有效。