gpt4 book ai didi

javascript - 在 return() 中使用 .map 导入组件

转载 作者:行者123 更新时间:2023-12-02 22:30:21 27 4
gpt4 key购买 nike

谁能告诉我如何使用 .map 导入一堆组件?像这样的事情...

import Welcome from 'Welcome.jsx';
import Services from 'Services.jsx';

const Index = props => {
const myComponents = ['Welcome', 'Services'];

return (
<div>
{myComponents.map((componentName, index) => (
<div key={index}> />
<{componentName} />
</div>
))}
</div>
);
};```

最佳答案

不要直呼他们的名字。在数组中使用组件(函数值)本身:

import Welcome from 'Welcome.jsx';
import Services from 'Services.jsx';

const Index = props => {
const myComponents = [Welcome, Services];

return (
<div>
{myComponents.map((AnyComponent, index) => (
<div key={index}> />
<AnyComponent />
</div>
))}
</div>
);
};

关于javascript - 在 return() 中使用 .map 导入组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58924851/

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