如何解构嵌套的routes
和index
并设置默认值?
const {
nav: { index: navIndex = '', routes: navRoutes = '' }
routes = '', index = ''
} = _navigator.state;
我想将嵌套值重命名为navIndex
和navRoutes
,有什么想法吗?
答案 0 :(得分:0)
您可以为未指定的nav
对象使用默认对象
const {
nav: { index: navIndex = '', routes: navRoutes = '' } = {},
routes = '',
index = ''
} = _navigator.state;