我是React的Functional Component和新Hook特性的新手。目前我有一个复杂逻辑和多个case的条件渲染用例(不能简单地使用switch case,triary或enum渲染)。请看下面的示例代码:
const conditionRender = condition => {
if (condition < 0) {
return <Component1 />
}
if (condition < 12) {
return <Component2 />
}
if (condition < 50) {
return <Component3 />
}
if (condition < 100) {
return <Component4 />
}
if (condition % 2 === 0) {
return <Component5 />
}
}
function App() {
return (
<div className="App">
{conditionRender(condition)}
</div>
);
}
我使用了函数组件之外的函数。这是最好的做法吗?或者你可以建议最好的做法。谢谢
2条答案
按热度按时间dsekswqp1#
只在最后一个中返回空值,因为如果没有条件匹配,则不会返回任何内容
yxyvkwin2#
我认为最简单的方法来做到这一点与胡克斯是遵循这条道路。
别忘了进口!