gpt4 book ai didi

javascript - 在变量声明赋值中作为别名导入

转载 作者:行者123 更新时间:2023-11-28 17:37:20 25 4
gpt4 key购买 nike

在导入中,我们可以从模块重组对象。

import { export as alias } from "module-name";

为什么我们不能对来自函数的对象执行相同的操作?

比如这样:

const example = () => ({greeting: 'Hello World'})
const {greeting as welcome} = example()
console.log(welcome)

最佳答案

const {greeting : welcome} = example()

您可以不使用 as 运算符。 as 运算符的发明可能是因为上述语法带来的困惑。

关于javascript - 在变量声明赋值中作为别名导入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48816473/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com