gpt4 book ai didi

javascript - 在 React 中渲染多个条件三元运算符

转载 作者:行者123 更新时间:2023-12-05 09:34:45 25 4
gpt4 key购买 nike

第一次尝试这个所以请告诉我。

我想根据三个条件之一返回一些元素。目前该代码适用于两种情况:

<h1 id="largeh1">
{isEnvironmentBFE
? outputEnFr(
"BFE Environment English Text",
"BFE Environment French Text",
this.props.lang
)
: outputEnFr(
"Acme Environment English Text",
"Acme Environment French Text",
this.props.lang
)
// Want third condition here
}
</h1>

如果环境是“isEnvironmentBFE_OR_BFERENTAL”,我想再添加一个条件 - 所以当人们遇到第三种环境时,它会为他们提供不同的英语/法语值。如果可能的话,我想坚持使用三元运算符。

知道如何在此处添加第三个条件吗?

最佳答案

<h1 id="largeh1">
{
isEnvironmentBFE
? (
outputEnFr(
"BFE Environment English Text",
"BFE Environment French Text",
this.props.lang
)
) : NEW CONDITIONAL HERE
? (NEW RESULT)
: (
outputEnFr(
"Acme Environment English Text",
"Acme Environment French Text",
this.props.lang
)
)
}
</h1>

这相当于

if(isEnvironmentBFE)
//yadda
else if (foo)
//yadda yadda
else
//yadda

关于javascript - 在 React 中渲染多个条件三元运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66318389/

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