MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Express JS unbegrenzte Abfrageparameterfunktion?

Warum verwenden Sie nicht forEach oder etwas

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

req.query.forEach(query=>{

queriesFound[query]=query;
}

QueriesFound will be an object

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

}

//QueriesFound wird ein Objekt sein

{"Name":"Name","AnotherParam":"AnotherParam"}