Files
freeCodeCamp/curriculum/challenges/italian/05-apis-and-microservices/mongodb-and-mongoose/use-model.find-to-search-your-database.md
Nicholas Carrigan (he/him) c4fd49e5b7 chore: manual translations (#42811)
2021-07-10 09:53:54 +05:30

1.5 KiB

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
587d7fb7367417b2b2512c0b Usare model.find() per fare ricerche nel database 2 301543 use-model-find-to-search-your-database

--description--

Nel suo uso più semplice, Model.find() accetta un documento di query (un oggetto JSON) come primo argomento, quindi una callback. Restituisce un array di corrispondenze. Supporta una gamma estremamente ampia di opzioni di ricerca. Per approfondimenti leggi la documentazione.

--instructions--

Modifica la funzione findPeopleByName per trovare tutte le persone che hanno un dato nome, usando Model.find() -> [Person]

Usa l'argomento personName della funzione come chiave di ricerca.

--hints--

La ricerca di tutti gli elementi corrispondenti a un criterio dovrebbe avere successo

(getUserInput) =>
  $.post(getUserInput('url') + '/_api/find-all-by-name', {
    name: 'r@nd0mN4m3',
    age: 24,
    favoriteFoods: ['pizza']
  }).then(
    (data) => {
      assert.isArray(data, 'the response should be an Array');
      assert.equal(
        data[0].name,
        'r@nd0mN4m3',
        'item.name is not what expected'
      );
      assert.equal(data[0].__v, 0, 'The item should be not previously edited');
    },
    (xhr) => {
      throw new Error(xhr.responseText);
    }
  );

--solutions--

/**
  Backend challenges don't need solutions, 
  because they would need to be tested against a full working project. 
  Please check our contributing guidelines to learn more.
*/