如何解决遍历数组并将其拼接在reactJS
我想检查帖子中是否有用户提及,并插入用户名以及指向用户个人资料的链接。它适用于这样的首次提及:
if (mentions.length > 0) {
const splitSearch = '@' + mentions[0].user.name;
children = text.split(splitSearch);
for (let i = children.length - 1; i > 0; i--) {
const a = (
<a href={`profile/${mentions[0].user._id}`}>@{mentions[0].user.name}</a>
);
children.splice(i,a);
}
}
我尝试了for循环:
if (mentions.length > 0) {
for (let index = 0; index < mentions.length; index++) {
const splitSearch = '@' + mentions[index].user.name;
children = text.split(splitSearch);
for (let i = children.length - 1; i > 0; i--) {
const a = (
<a href={`profile/${mentions[index].user._id}`}>
@{mentions[index].user.name}
</a>
);
children.splice(i,a);
}
}
}
我认为问题在于结果没有保存,只是被下一个环形螺母覆盖,我不知道如何解决。
谢谢!
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。