我在 Node.js 中遇到了一个非常令人沮丧的问题。
我将从我正在做的事情开始。
我在文件中创建一个对象,然后导出构造函数并在其他文件中创建它。
我的对象定义如下:
文件 1:
var Parent = function() {};
Parent.prototype = {
C: function () { ... }
}
module.exports = Parent;
文件 2:
var Parent = require('foo.js'),
util = require('util'),
Obj = function(){ this.bar = 'bar' };
util.inherits(Obj, Parent);
Obj.prototype.A = function(){ ... };
Obj.prototype.B = function(){ ... };
module.exports = Obj;
我正在尝试在另一个文件中使用该对象
文件 3:
var Obj = require('../obj.js'),
obj = new Obj();
obj.A();
我收到错误:
TypeError: Object [object Object] has no method 'A'
但是,当我运行 Object.getPrototypeOf(obj) 时,我得到:
{ A: [Function], B: [Function] }
我不知道我在这里做错了什么,任何帮助将不胜感激。