javascript – 小袋鼠和原型错误

前端之家收集整理的这篇文章主要介绍了javascript – 小袋鼠和原型错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
问题是原型未定义,尽管在节点控制台中编写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

解决方法

我认为http.IncomingMessage是未定义的.

可能会发生http已被覆盖在代码中的某些位置.

var http = require('http');
var req = Object.create(http.IncomingMessage.prototype)

我测试了上面的代码,它的工作原理.

原文链接:https://www.f2er.com/js/158764.html

猜你在找的JavaScript相关文章