如何使用 reactjs 从 firestore 数据库中搜索用户

How to search users from firestore database using reactjs

我可以获取并显示 usernames.i 只是想使用搜索进行过滤。我使用的是 reactjs 和 firebase。

我想通了

{athletes
        .filter((athlete) => {
          if (search === "") {
            return athlete;
          } else if (
            athlete.fullName.toLowerCase().includes(search.toLowerCase())
          ) {
            return athlete;
          }
        })

        .map((athlete, key) => (
          <AthleteCard
            key={key}
            athlete={athlete}
            selectedAthletes={athletesForm}
            updateAthletesForm={updateAthletesForm}
          />
        ))}