Вот пример кода для загрузки файла (картинки) в Node.js с помощью Express и Multer:
Установите необходимые пакеты:
Создайте файл server.js:
const app = express();
const storage = multer.diskStorage({destination: function (req, file, cb) {cb(null, 'uploads/');},filename: function (req, file, cb) {cb(null, file.fieldname + '-' + Date.now() + path.extname(file.originalname));}});
const upload = multer({ storage: storage });
app.post('/upload', upload.single('image'), (req, res) => {res.send('File uploaded successfully');});
app.listen(3000, () => {console.log('Server is running on port 3000');});
Запустите сервер:
Откройте браузер и введите адрес http://localhost:3000, затем выберите файл и нажмите кнопку "Upload".
Файл будет загружен в папку "uploads/" в корне вашего проекта. В случае успешной загрузки, вы увидите сообщение "File uploaded successfully".
Вот пример кода для загрузки файла (картинки) в Node.js с помощью Express и Multer:
Установите необходимые пакеты:
npm install express multerСоздайте файл server.js:
const express = require('express');const multer = require('multer');
const path = require('path');
const app = express();
const storage = multer.diskStorage({
destination: function (req, file, cb) {
cb(null, 'uploads/');
},
filename: function (req, file, cb) {
cb(null, file.fieldname + '-' + Date.now() + path.extname(file.originalname));
}
});
const upload = multer({ storage: storage });
app.post('/upload', upload.single('image'), (req, res) => {
res.send('File uploaded successfully');
});
app.listen(3000, () => {
3. Создайте HTML-форму для загрузки файлов (index.html):console.log('Server is running on port 3000');
});
```html
<!DOCTYPE html>
<html>
<head>
<title>Upload File</title>
</head>
<body>
<h1>Upload File</h1>
<form action="http://localhost:3000/upload" method="post" enctype="multipart/form-data">
<input type="file" name="image">
<button type="submit">Upload</button>
</form>
</body>
</html>
Запустите сервер:
node server.jsОткройте браузер и введите адрес http://localhost:3000, затем выберите файл и нажмите кнопку "Upload".
Файл будет загружен в папку "uploads/" в корне вашего проекта. В случае успешной загрузки, вы увидите сообщение "File uploaded successfully".