I have ecommerce fullstack project, I am searching how to add images to the MongoDB database. I found lots of source codes for upload one image but I am searching to upload multiple images. I don’t want to use cloadinary framework. If you have better solution with multer framework I will be pleasant for this.
Thanks for attention.
I tried for multiple images to add array like:
imgs: [
{
url: { type: String, required: true }
}
]
(in mongoose)
But it doesn’t work.