How nodejs implements file upload based on express

亚连
Release: 2018-05-25 17:29:41
Original
2166 people have browsed it

This article mainly introduces the method of nodejs to implement file upload based on express. It analyzes the specific steps and related operation skills of nodejs based on express framework to implement file upload function based on the example. Friends in need can refer to it

The example in this article describes how nodejs implements file upload based on express. I would like to share it with you for your reference. The details are as follows:

When I was working on a personal project some time ago, I used the nodejs server to upload files. Now I will summarize this as a record.

When I upload files, I use express's multiparty. Of course, it can also be implemented using the connect-multiparty middleware, but the official does not seem to recommend the use of connect-multiparty middleware. Without further ado, let’s look at the code below.

Steps:

(1) Use express to create a project. The jade template engine is used by default, but I am still used to html, so I changed it to html template.
(2) In the project directory, install the necessary components through npm install multiparty.
(3) Modify views/index.html and add a file upload form.

index.html

    上传文件 
  上传文件 
Copy after login

(4) Modify routes/index.js to implement the background code for uploading pages and uploading responses.

var express = require('express'); var router = express.Router(); var multiparty = require('multiparty'); var util = require('util'); var fs = require('fs'); /* 上传页面. */ router.get('/', function(req, res, next) { //res.render('./views/index'); res.sendfile('./views/index.html'); }); /* 上传 */ router.post('/file/uploading', function(req, res, next) { /* 生成multiparty对象,并配置上传目标路径 */ var form = new multiparty.Form(); /* 设置编辑 */ form.encoding = 'utf-8'; //设置文件存储路劲 form.uploadDir = './public/files'; //设置文件大小限制 form.maxFilesSize = 2 * 1024 * 1024; // form.maxFields = 1000; //设置所有文件的大小总和 //上传后处理 form.parse(req, function(err, fields, files) { var filesTemp = JSON.stringify(files, null, 2); if(err) { console.log('parse error:' + err); }else { console.log('parse files:' + filesTemp); var inputFile = files.inputFile[0]; var uploadedPath = inputFile.path; var dstPath = './public/files' + inputFile.originalFilename; //重命名为真实文件名 fs.rename(uploadedPath, dstPath, function(err) { if(err) { console.log('rename error:' + err); }else { console.log('rename ok'); } }) } res.writeHead(200, {'content-type': 'text/plain;charset=utf-8'}); res.write('received upload:\n\n'); res.end(util.inspect({fields: fields, files: filesTemp})) }) }) module.exports = router;
Copy after login

The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.

Related articles:

AngularJS tab bar implementation and mvc small case (graphic tutorial)

React ajax java implementation Upload pictures and preview function (graphic tutorial)

How to use ajax_Examples, ajax data processing

The above is the detailed content of How nodejs implements file upload based on express. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!