gpt4 book ai didi

javascript - 如果属性(property)不存在

转载 作者:行者123 更新时间:2023-11-30 14:34:11 24 4
gpt4 key购买 nike

我通过 arr.map() 过滤数据,然后将该数据发送到 React-Table,因为我的 API 返回了几个我现在不会使用的属性。

const filteredPuntedIssues = this.state.puntedIssues.map(item => ({
assignee: item ? item.assigneeName : 'Empty',
id: item ? item.id : 'Empty',
key: item ? item.key : 'Empty',
type: item ? item.typeName : 'Empty',
summary: item ? item.summary : 'Empty',
storyPoints: item.estimateStatistic ? item.estimateStatistic.statFieldValue.value : '0',
}));

如果任何值为 null,此方法有效,但如果在我的 API 中某个地方不存在这些属性之一,则结果为空,我想将其设为字符串 ex: "Does not Exists"

最佳答案

您可以为此添加另一个三元条件。例如:

assignee: item ? (item.assigneeName ? item.assigneeName : "Does not Exists") : 'Empty'

assignee: item ? (item.assigneeName || "Does not Exists") : 'Empty'

关于javascript - 如果属性(property)不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50684367/

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