3

使用 TS 导入,我相信我可以做到这一点:

import {foo as bar} from 'foo';

在 JS 或 TypeScript 中使用 ES6 对象解构 - 有没有办法以相同的方式重命名“导入的值”?

例如,

const {longVarName as lvn} = x.bar;
4

1 回答 1

2

使用Jaromanda X建议的解决方案:

const {longVarName: lvn} = x.bar;

事实上,您可以做的还不止这些:

多个变量

var {p: foo, q: bar} = o;

默认值:

var {a = 10, b = 5} = {a: 3};

嵌套对象:

const x = {a: {b: {c: 10}}};
const {a: {b: {c: ten}}} = x;
// ten === 10

有关更多信息,请参阅https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment

于 2017-06-17T09:19:41.327 回答