MongoDB
 sql >> Base de données >  >> NoSQL >> MongoDB

Fonction de paramètre de requête illimité Express JS ?

Pourquoi n'utilisez-vous pas forEach ou quelque chose

function endPoint (req, res) {
const queriesFound ={}

req.query.forEach(query=>{

queriesFound[query]=query;
}

QueriesFound will be an object

{ “Name”:”Name”, “AnotherParam”:”AnotherParam” }

}

//QueriesFound sera un objet

{“Name”:”Name”,“AnotherParam”:”AnotherParam”}