gpt4 book ai didi

javascript - 如何在 ReactJS 中使用 const

转载 作者:行者123 更新时间:2023-12-02 15:52:56 24 4
gpt4 key购买 nike

我有一个数组需要使用两次,但我不想在代码中重复它

const menuItems = [
{ route : 'home', text : 'Game Info' },
{ route : 'players-info', text : 'Players Info' },
{ route : 'money', text : 'Money' },
{ route : 'refunds', text : 'Refounds' },
{ route : 'videos', text : 'Videos' },
{ route : 'tips', text : 'Tips' }
];

在我正在做的类里面

render () {
return <LeftNav
menuItems={menuItems} />
}

所以,假设在另一个文件中,我想使用相同的 const menuItems,并像这样渲染它

  render () {

let tabs = menuItems.map((item) => {
return <Tab
key={item.route}
label={item.text}
route={item.route}
onActive={this._onActive} />
});

return <Tabs
initialSelectedIndex={0}>{tabs}
</Tabs>;
}

那么,我应该怎么做才能在不同文件中使用 const 呢?

最佳答案

//menuItems.js

export default const menuItems = [
{ route : 'home', text : 'Game Info' },
{ route : 'players-info', text : 'Players Info' },
{ route : 'money', text : 'Money' },
{ route : 'refunds', text : 'Refounds' },
{ route : 'videos', text : 'Videos' },
{ route : 'tips', text : 'Tips' }
];

//然后你可以像这样导入它

import menuItems from "./menuItems";

关于javascript - 如何在 ReactJS 中使用 const,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31754313/

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