gpt4 book ai didi

javascript - 解构更改名称并设置默认值

转载 作者:行者123 更新时间:2023-12-02 23:26:49 24 4
gpt4 key购买 nike

如何解构嵌套的 routesindex并设置默认值?

const {
nav: { index: navIndex = '', routes: navRoutes = '' }
routes = '', index = ''
} = _navigator.state;

我想将嵌套值重命名为 navIndexnavRoutes ,有什么想法吗?

最佳答案

您可以为未给定的 nav 对象采用默认对象

const {
nav: { index: navIndex = '', routes: navRoutes = '' } = {},
routes = '',
index = ''
} = _navigator.state;

关于javascript - 解构更改名称并设置默认值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56700455/

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