Recherche dans des tableaux JavaScript d'objets avec des valeurs d'attribut spécifiques
Pour déterminer si un tableau contient un objet avec une valeur d'attribut spécifique, envisagez d'exploiter le tableau méthodes qui prennent en charge une recherche efficace.
1. Utilisation de la méthode some() :
if (vendors.some((e) => e.Name === 'Magenic')) { // Object found with the matching attribute value }
some() vérifie si au moins un objet du tableau satisfait à la condition.
2. Utilisation de la méthode find() :
if (vendors.find((e) => e.Name === 'Magenic')) { // Returns the first object with the matching attribute value }
find() renvoie l'objet trouvé ou non défini si aucune correspondance n'est trouvée.
3. Détermination de la position de l'objet :
const i = vendors.findIndex((e) => e.Name === 'Magenic'); if (i > -1) { // Position of the object with the matching attribute value }
findIndex() renvoie l'index du premier objet correspondant ou -1 s'il n'est pas trouvé.
4. Recherche de plusieurs objets correspondants :
if (vendors.filter((e) => e.Name === 'Magenic').length > 0) { // Array of all objects with the matching attribute value }
filter() renvoie un nouveau tableau contenant tous les objets qui satisfont à la condition.
5. Gestion de la compatibilité des anciens navigateurs :
Pour les navigateurs sans prise en charge de la fonction flèche, utilisez :
if (vendors.filter(function(e) { return e.Name === 'Magenic'; }).length > 0) { // Array of all objects with the matching attribute value }
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!