skip to Main Content

How can I retrieve image from mongodb

in mongodb my image is saved as image: BinData(0, 'QzpcZmFrZXBhdGhcV2hhdHNBcHAgSW1hZ2UgMjAyMi0xMi0wNCB40Ny4zMS5qcGc=') I am trying to access this image in my frontend Reactjs like this {userData.image ? <img src={data:image;base64,${userData.image}} alt="User profile image" width="200" height="200" /> : <img src={'./Images/profile.png'} alt="Default image" width="200" height="200"…

VIEW QUESTION
Back To Top
Search