作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我有一个 Node.js 项目,其中有我自己的自定义错误:
'use strict';
require('util').inherits(module.exports, Error);
function CustomError(message, extra) {
Error.captureStackTrace(this, this.constructor);
this.name = this.constructor.name;
this.type = 'CustomError';
this.message = message;
this.extra = extra;
};
module.exports = CustomError;
这曾经工作得很好。我可以 Throw new CustomError('my message', dataObject)
并独立于提供错误类型捕获该错误并相应地控制程序流。
但是,自从将 Node 更新到最新的稳定版本 (v6.4.0) 后,它现在已损坏。当我运行单元测试时出现错误:
TypeError: Object.setPrototypeOf called on null or undefined
at Function.setPrototypeOf (native)
at Object.exports.inherits (util.js:973:10)
at Object.<anonymous> (CustomError.js:3:17)
at Module._compile (module.js:556:32)
at Object.Module._extensions..js (module.js:565:10)
at Module.load (module.js:473:32)
at tryModuleLoad (module.js:432:12)
at Function.Module._load (module.js:424:3)
at Module.require (module.js:483:17)
at require (internal/module.js:20:19)
最佳答案
require('util').inherits(module.exports, Error);
module.exports = CustomError;
显然 module.exports
是一个空对象,第一行有一个 undefined
.prototype
。您需要在创建构造函数后调用 inherits
!将行向下移动,或者使用
require('util').inherits(CustomError, Error);
即使在顶部也可以工作,因为函数声明被提升了。
This used to work fine.
不完全是,但它没有抛出错误before node v6 .
关于javascript - TypeError: Object.setPrototypeOf 在 null 或 undefined 上调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39099527/
我是一名优秀的程序员,十分优秀!