根据这个兼容性表,Node 6.5 中的解构或展开运算符应该没有问题。
但是,这里的代码:
const things = {
a: 1,
b: 2,
c: true,
d: false
};
const { a, b, ...rest } = things;
console.log(a); // 1
console.log(b); // 2
console.log(rest); // { c: true, d: false }
引发此错误:
const { a, b, ...rest } = things;
^^^
SyntaxError: Unexpected token ...
at Object.exports.runInThisContext (vm.js:76:16)
at Module._compile (module.js:528:28)
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.runMain (module.js:590:10)
at run (bootstrap_node.js:394:7)
at startup (bootstrap_node.js:149:9)
at bootstrap_node.js:509:3
即使在这个babel 编译器中它也没有问题。
有什么想法吗?(是的,我安装了 Node 6.5)