Я хочу загрузить объект, содержащий изображение в нем, в базу данных mongodb, используя nodejs, но я не могу этого сделать.
Файл Angular
onSelectedFile(event){
this.edit_image = event.target.files[0];
}
editProfile(e){
const user={
email:this.edit_email,
img:this.edit_image,
}
console.log("To Update");
console.log(user);
this._authService.editProfile(user)
.subscribe(data=>{
this.dataFromService=data;
this.user=this.dataFromService.user;
console.log(data);
})
}
в служебном файле
editProfile(user){
let headers = new HttpHeaders();
headers=headers.append('content-type','application/json');
console.log("Updating Profile");
console.log(user);
return this.http.post('http://localhost:8080/profile/edit_Profile',user,{headers:headers})
.pipe(catchError(this.errorHandler))
}
в файле Nodejs
router.post('/edit_profile', (req, res) => {
let updateProfile = {
email: req.body.email,
img: req.body.img
};
console.log("Profile");
console.log(updateProfile); //to check the data
console.log("Profile");
Profile.updateP(updateProfile, (err, user) => {
if (err) throw err;
else {
console.log("Update User");
console.log(user);
res.json({
user: user
})
}
})
})
При регистрации данных в профиле обновляется печатьпустое значение img
Схема пользователя
const profileSchema = schema({
email: {
type: String,
},
img: { data: Buffer, contentType: String }
});
Я хочу обновить существующий профиль, но я не могу использовать multer или даже передатьданные изображения из углового файла в файл nodejs