I have a problem that I cannot resolve. I have a table in MongoDB, and this is structure:
const shopEconomy = new mongoose.Schema({
guildID: { type: String },
name: { type: String },
value: { type: Number },
description: { type: String },
rolereq: { type: String },
roleadd: { type: String },
roleremove: { type: String },
buyinfo: { type: String }
});
I need to list all names from the table (shopData.name) and then check if the typed name exists in the database. I tried to do something like the one below, but it doesn’t work.
const shopData = await shopEconomy.find({ guildID: message.guild.id });
let categories = [];
let data = new Object();
for(const i in shopData){
data += `${shopData[i].name}n`
categories.push(data)
}
Could someone take a look at this and help me out?
2
Answers
Part of the issue here comes from the use of a
for...in
loop which treatsshopData
as an object and loops over all properties of it. Instead try using afor...of
loop which treatsshopData
as an array and loops over all objects in it.See also this question on
for...in
vsfor...of
and this question on JavaScript loops.The title of the question does not quite match the description of the question. Given the description, let’s assume the typed name is assigned to var
typedName
.Let’s also assume that you have bound your
shopEconomy
schema to a model that will actually interact with a mongodb collection calledshopData
. Then this will iterate all the docs in theshopData
:It is likely that the OP wants to find duplicate name in the collection, for which this pipeline will work: