【发布时间】:2016-02-25 12:54:56
【问题描述】:
我看到instanceof 运算符在Error 子类的实例上不起作用,当在 OS X 上的babel-node 版本 6.1.18/节点版本 5.1.0 下运行时。这是为什么?相同的代码在浏览器中运行良好,以我的fiddle 为例。
以下代码在浏览器中输出true,而在babel-node下为false:
class Sub extends Error {
}
let s = new Sub()
console.log(`The variable 's' is an instance of Sub: ${s instanceof Sub}`)
我只能想象这是由于 babel-node 中的一个错误,因为instanceof 适用于除Error 之外的其他基类。
.babelrc
{
"presets": ["es2015"]
}
编译输出
这是babel 6.1.18编译的JavaScript:
'use strict';
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
var Sub = (function (_Error) {
_inherits(Sub, _Error);
function Sub() {
_classCallCheck(this, Sub);
return _possibleConstructorReturn(this, Object.getPrototypeOf(Sub).apply(this, arguments));
}
return Sub;
})(Error);
var s = new Sub();
console.log('The variable \'s\' is an instance of Sub: ' + (s instanceof Sub));
【问题讨论】:
-
我无法重现您的问题。我使用在线 babel repl 和使用 babel-node(最新)进行了测试。
-
你在 Babel 中使用了什么预设?也许发布转换后的脚本将有助于重现问题
-
@DenysSéguret 谢谢,会进一步检查。
-
@RGraham 小提琴在浏览器中使用 Babel?关键是 Babel 在浏览器和 Node 中的工作方式显然不同。
-
@RGraham 我已经发布了编译好的脚本。
标签: javascript node.js ecmascript-6 babeljs