MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Express JS funzione parametro di query illimitata?

Perché non usi forEach o qualcosa del genere

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

req.query.forEach(query=>{

queriesFound[query]=query;
}

QueriesFound will be an object

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

}

//QueriesFound sarà un oggetto

{"Nome":"Nome","AnotherParam":"AnotherParam"}