- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个如下所示的状态变量
const Home = ({ t, i18n, history }) => {
const [otherStudiosAvailable, setOtherStudiosAvailable] = useState([]);
const studios = ["de", "fr", "pl", "en", "nl", "ru"];
const otherStudios = studios.filter(item => {
return item !== i18n.language;
});
useEffect(() => {
let others = [];
for (const studio of otherStudios) {
checkForAvailableAgent(
`sales_${studio}`,
"Linktostudio",
"serviceID"
)
.then(res => {
others[studio] = res;
setOtherStudiosAvailable(others);
})
.catch(error => {
console.log("an error happened.");
});
}
}, []);
}
{otherStudiosAvailable.indexOf(true) ? (
<Button
variant="success"
onClick={e => callBtnClick("flag")}
>
Other studios available
</Button>
) : ("")
}
我需要在基于 otherStudiosAvailable 的 JSX 中进行条件检查(如果它至少有一个真实值)
如有任何帮助,我们将不胜感激。
最佳答案
实际上,如果数组中不存在 true,则 indeOf 会返回 -1但 -1 的真值是 true,因此您需要显式检查它是否不等于 -1(表示元素存在)Object.values(otherStudiosAvailable) 返回此对象中存在的值的数组
{Object.values(otherStudiosAvailable).indexOf(true)!==-1 ? (
<Button
variant="success"
onClick={e => callBtnClick("flag")}
>
Other studios available
</Button>
) : ("")
}
关于javascript - 如何遍历 react 状态变量数组并确定它是否有一个真值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58336853/
我想获取百分比值大于 90% 的所有项,但该部分的顺序无关紧要。这是一个例子: Person Score Location 1 91 US 2
在大多数语言中,包括 Python,变量的真实值可以在条件表达式中隐式使用,即: is_selected = True If is_selected: #do some
是否可以将 hibernate 设置为将 -1 而不是 1 作为数据库中 boolean 字段的真值?我需要 -1 来保持与其他 Delphi 程序的兼容性。 最佳答案 @Type(type="com
使用文档运行 rasa_core 示例 › python3 -m rasa_core.run -d models/dialogue -u models/nlu/default/current 并在对话
如果我的对象包含一个具有真值的键,我真的很困惑如何返回一个简单的真/假。我不想返回键或值本身,只是断言它确实包含一个真值。 例如 var fruits = { apples: false, orang
我正在尝试编写一个 JUnit 测试,它检查接收到的 JSON 的值。我使用 jsonPath 访问 JSON 中的这些值。我想检查一个值是否为true。对于简单的 jsonPaths,它对我有用,但
我正在尝试检查 Angular HTML 中的 bool 值真实性,但得到了一个奇怪的结果。看完this SO post我以为我明白发生了什么。我希望能够使用 === 运算符,但正如我下面的最后一个示
在 REST Web 服务中,POST JSON 正文如下所示: { "printRequest" : { "printName" : "XYZ", "enab
我是一名优秀的程序员,十分优秀!