我正在尝试使用 If 语句将数组中对象的属性与字符串进行比较。我正在使用 for 循环,但由于某种原因,我似乎无法触发条件语句。这是我用来将对象存储在 AsyncStorage 中的代码:
onPressNext= async () => {
if (this.state.selectedFrequency.length > 0) {
const selectedFrequency = this.state.selectedFrequency;
try {
await AsyncStorage.setItem('selectedFrequency', JSON.stringify(selectedFrequency));
} catch (error) {
// Error saving data
}
这是我稍后用来检索对象的代码:
onPressNext= async () => {
if (this.state.selectedExclusions.length > 0) {
try {
const value = await AsyncStorage.getItem('selectedFrequency');
if (value !== null) {
console.log(JSON.parse(value));
const selectedFrequency = JSON.parse(value);
for (let j = 0; j < selectedFrequency.length; j++) {
if (JSON.stringify(selectedFrequency[j].value) === 'Daily') {
selectedFrequency[j].splice(j, 1);
} else {
console.log(JSON.stringify(selectedFrequency[j].label));
}
}
}
} catch (error) {
// Error retrieving data
Alert.alert(
error,
'Sorry, there was an error',
[
{ text: strings.Okay, style: 'cancel' },
]
);
}
这就是数组的结构:
frequency = [
{ label: strings.Daily, value: 'Daily' },
{ label: strings.Weekly, value: 'Weekly' },
{ label: strings.Monthly, value: 'Monthly' },
{ label: strings.Every_Three_Months, value: '3 Months' },
{ label: strings.three_five_Years, value: '5 Years' },
{ label: strings.Ten_Years, value: '10 Years' }
];
我期望发生的是,如果对象数组包含字符串值为 Daily 的项目,则该项目将被删除。所以 for 循环遍历数组,检查值并删除任何值为 Daily 的对象。如下所述,我认为问题出在 for 循环中的 If 语句中。
任何帮助将不胜感激!