Я пытаюсь загрузить изображения из angular
внешнего интерфейса в nodejs
с помощью multer
пакета
Мой маршрут:
router.post('/fileupload', upload.single('avatar'), (req, res, next) => {
// req.file is the `avatar` file
// req.body will hold the text fields, if there were any
// Did the route activate ?
res.json({ gotIt : true});
})
Моя HTML-форма в угловых 2 комп.
<form action="http://localhost:3000/users/fileupload" method="post" enctype="multipart/form-data">
<input type="file" name="filetoupload"><br>
<input type="submit">
</form>
Но при отправке ничего не происходит - если я проверяю его с postman
, это работает. Что я здесь не так делаю?
Я также пытался просто / users / fileupload в form action
.