// Rest properties
require("babel-core").transform("code", {
plugins: ["transform-object-rest-spread"]
});
let { x, y, ...z } = { x: 1, y: 2, a: 3, b: 4 };
console.log(x); // 1
console.log(y); // 2
console.log(z); // { a: 3, b: 4 }
// Spread properties
let n = { x, y, ...z };
console.log(n); // { x: 1, y: 2, a: 3, b: 4 }
我正在尝试http://babeljs.io/docs/plugins/transform-object-rest-spread/中的上述示例,但它不起作用。
let { x, y, ...z } = { x: 1, y: 2, a: 3, b: 4 };
^^^
SyntaxError: Unexpected token ...
at Object.exports.runInThisContext (vm.js:73:16)
at Module._compile (module.js:543:28)
at Object.Module._extensions..js (module.js:580:10)
at Module.load (module.js:488:32)
at tryModuleLoad (module.js:447:12)
at Function.Module._load (module.js:439:3)
at Module.runMain (module.js:605:10)
at run (bootstrap_node.js:418:7)
at startup (bootstrap_node.js:139:9)
at bootstrap_node.js:533:3
如果我使用babel-node
运行它,那么它可以正常工作。知道为什么吗?
答案 0 :(得分:2)
require("babel-core").transform("code", {
plugins: ["transform-object-rest-spread"]
});
这是用于转换作为.transform()
函数的第一个参数给出的代码的Node API。您需要将"code"
替换为要转换的实际代码。它不会触及任何文件。您不会对返回的代码执行任何操作,但是您尝试使用Node定期运行文件的其余部分,而Node不支持对象传播操作符。您可能必须执行生成的代码,或将其写入文件,您可以使用Node运行该文件。
以下是如何使用Node API转换代码的示例:
const babel = require('babel-core');
const fs = require('fs');
// Code that will be transpiled
const code = `let { x, y, ...z } = { x: 1, y: 2, a: 3, b: 4 };
console.log(x); // 1
console.log(y); // 2
console.log(z); // { a: 3, b: 4 }
// Spread properties
let n = { x, y, ...z };
console.log(n); // { x: 1, y: 2, a: 3, b: 4 }`
const transformed = babel.transform(code, {
plugins: ["transform-object-rest-spread"]
});
// Write transpiled code to output.js
fs.writeFileSync('output.js', transformed.code);
运行此文件后,您有一个文件output.js
,它可以转换对象传播。然后你可以运行它:
node output.js
您可能不会使用Node API,除非您想对代码做一些非常具体的操作,这是某种分析或转换,但肯定不会运行它。或者当然,当您将其集成到需要以编程方式转换代码的工具中时。
如果您只想运行代码,请使用babel-node
。如果您只想对其进行转换,请使用babel
可执行文件。
答案 1 :(得分:0)
您可以查看Node.js ES2015 Support。 {j}支持v8.3。{/ p>}支持Nodej object rest/spread properties
let person = {id:1, name: 'Mahbub'};
let developer = {...person, type: 'nodeJs'};
let {name, ...other} = {...developer};
console.log(developer); // --> { id: 1, name: 'Mahbub', type: 'nodeJs' }
console.log(name); // --> Mahbub
console.log(other); // --> { id: 1, type: 'nodeJs' }