find 함수 nodejs 사용
3568 단어 nodefluttermongodbjavascript
const categorySchema = mongoose.Schema({
name: {
required: true,
type: String
}
});
const productSchema = mongoose.Schema({
name: {
type: String,
required: true
},
category: {
type: mongoose.Schema.Types.Mixed,
ref: "Category",
required: true
}
});
위에서 볼 수 있듯이 Product 내부에 Category를 사용하는 두 가지 모델이 있습니다.
이제 mongodb에서 기본적으로 생성되는 특정 범주 또는 해당 ID를 _id로 전달하여 모든 제품을 가져오고 싶습니다.
원하는 결과를 얻고 있지만 아래와 같이 하십시오.
const id = req.query.categoryId;//getting this from GET REQUEST
let tempProducts = [];
let products = await Product.find({});
products.forEach(product => {
if (product.category._id===id){
tempProducts.push(product);
}
});
그것은 내가 달성하고 싶은 것을 얻었지만 여전히 "찾기"기능을 사용하여 그것을 얻는 방법을 알고 싶습니다. 또는 이것이 내가 하고 있는 유일한 방법입니다.
Reference
이 문제에 관하여(find 함수 nodejs 사용), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/husainahar/using-find-function-nodejs-4j4d텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)