gpt4 book ai didi

javascript - 数组 Javascript 中的文本替换出现问题(Angular)

转载 作者:行者123 更新时间:2023-12-03 10:05:39 25 4
gpt4 key购买 nike

我需要从对象数组中的每个对象字段中删除“hello”子字符串。我有一个错误“无法读取 null 的属性‘indexOf’”。发生这种情况是因为我尝试更改循环中的对象字段。但该怎么办呢? :)我使用 AngularJS。

var array = [
{text: 'hello user1'},
{text: 'hello user2'},
{text: 'user3'},
{text: 'hello user4'},
];
for (i = 0; i < array.length; i++) {
if (array[i].text.indexOf('hello') + 1) {
array[i].text = array[i].text.replace('hello','');
}
}

// For demo
document.write(JSON.stringify(array));

最佳答案

您的状况不正确。

The indexOf() method returns the index within the calling String object of the first occurrence of the specified value, starting the search at fromIndex. Returns -1 if the value is not found

将您的条件更改为

if(array[i].text.indexOf('hello') > -1){
//Rest of your code
}

关于javascript - 数组 Javascript 中的文本替换出现问题(Angular),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30367295/

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