Node.js formidable 上传文件的实现

本案例来自Node.js入门书籍:

http://www.nodebeginner.org/index-zh-cn.html

示例中只能上传并展示png图片,当然其他文件都是可行的,自己微调一下即可。

安装node.js:

# curl -sL https://rpm.nodesource.com/setup | bash -

# yum install -y nodejs 

防火墙打开8888端口;

Node.js自身处理上传文件会非常繁琐,可使用第三方的node-formidable来轻松处理:

npm install formidable

以下是代码:

Server端:

#server.js
var http = require("http");
var url = require("url");

var order = 1; //请求次数

function start(route, handle) {
    function onRequest(request, response) {
        var postData = "";
        var pathname = url.parse(request.url).pathname; //请求位置
        console.log("Request for " + pathname + " received.");

        route(handle, pathname, response, request); //路由此次请求

        console.log("Reauest received ~ +" + order); //请求次数
        order++;
    }

    http.createServer(onRequest).listen(8888); //监听8888端口

    console.log("Server has started");

}

exports.start = start;

路由:

#router.js

function route(handle, pathname, response, request) {
    console.log("About to route a request for " + pathname);

    if (typeof(handle[pathname]) === ‘function‘) {
        handle[pathname](response, request); //执行请求处理方法
    } else {
        console.log("No request handler found for " + pathname);
        response.writeHead(404, {
            "Content-Type": "text/plain"
        });
        response.write("404 Not found");
        response.end();
    }
}

exports.route = route;

Handler:

#requestHandlers.js
var querystring = require("querystring");
var formidable = require("formidable");
var fs = require("fs");

function start(response) {
    console.log("Request handler ‘start‘ was called.");

    var body = ‘<html>‘ +
        ‘<head>‘ +
        ‘<meta http-equiv="Content-Type" content="text/html; ‘ +
        ‘charset=UTF-8" />‘ +
        ‘</head>‘ +
        ‘<body>‘ +
        ‘<form action="/upload" enctype="multipart/form-data" ‘ +
        ‘method="post">‘ +
        ‘<input type="file" name="upload">‘ +
        ‘<input type="submit" value="Upload file" />‘ +
        ‘</form>‘ +
        ‘</body>‘ +
        ‘</html>‘;

    response.writeHead(200, {
        "Content-Type": "text/html"
    });
    response.write(body);
    response.end();
}

function upload(response, request) {
    console.log("Request handler ‘upload‘ was called.");

    var form = new formidable.IncomingForm();
    console.log("about to parse");
    form.parse(request, function(error, fields, files) {
        console.log("parsing done");
        fs.renameSync(files.upload.path, "/tmp/test.png"); //更名
        response.writeHead(200, {
            "Content-Type": "text/html"
        });
        response.write("received image:<br/>");
        response.write("<img src=‘/show‘ />"); //调用show方法展示图片
        response.end();
    });
}

function show(response) {
    var imagePath = "/tmp/test.png";
    console.log("Request handler ‘show‘ was called.");
    fs.readFile(imagePath, "binary", function(error, file) {
        if (error) {
            response.writeHead(500, {
                "Content-Type": "text/plain"
            });
            response.write(error + "\n");
            response.end();
        } else {
            response.writeHead(200, {
                "Content-Type": "image/png"
            });
            response.write(file, "binary");
            response.end();
        }
    });
}

exports.start = start;
exports.upload = upload;
exports.show = show;

入口文件:

#index.js

var server = require("./server"); //服务端
var router = require("./router"); //路由

var requestHandlers = require("./requestHandlers"); //请求处理器

var handle = {};

handle["/"] = handle["/start"] = requestHandlers.start;
handle["/upload"] = requestHandlers.upload;
handle["/show"] = requestHandlers.show;

server.start(router.route, handle); //初始函数 - 参数为路由方法及相应的处理方法

将这些扔到一个文件夹中,启动:

# node index.js

浏览器访问:http://yourhost:8888 或在其后加上/start 即可进入上传页面。

End.

时间: 2024-11-08 22:04:16

Node.js formidable 上传文件的实现的相关文章

Node.js——异步上传文件

前台代码 submit() { var file = this.$refs.fileUpload.files[0]; var formData = new FormData(); formData.append("file", file); formData.append("username", this.username); formData.append("password", this.password); axios.post("

利用ajaxfileupload.js异步上传文件

1.引入ajaxfileupload.js 2.html代码 <input type="file" id="enclosure" name="enclosure"> <button id="upClick" >上传</button> 注意这里的input控件的id和name必须一致:这样在后台利用springMVC接受文件的时候能对应起来: 3.JS代码 <script type=&q

Atitit.js获取上传文件全路径

1. 默认的value只能获取文件名..安全原因.. 1 2. Firefox浏览器的读取 1 3. Html5 的file api 2 4. 解决方法::使用applet插件 2 5. 参考 3 1. 默认的value只能获取文件名..安全原因.. js是无法获取file 控件的值的,你要获取的话可以通过后台程序语言用json或者xml之类的格式来返回被上传的文件路径. file是一种特殊的input,不能被赋值,也不能被javascript取值,只能随表单提交,而且随表单提交的也是file路

js能否上传文件夹

文件夹上传:从前端到后端 文件上传是 Web 开发肯定会碰到的问题,而文件夹上传则更加难缠.网上关于文件夹上传的资料多集中在前端,缺少对于后端的关注,然后讲某个后端框架文件上传的文章又不会涉及文件夹.今天研究了一下这个问题,在此记录. 先说两个问题: 是否所有后端框架都支持文件夹上传? 是否所有浏览器都支持文件夹上传? 第一个问题:YES,第二个问题:NO 只要后端框架对于表单的支持是完整的,那么必然支持文件夹上传.至于浏览器,截至目前,只有 Chrome 支持. 如果需要其它的浏览器支持则需要

jS Ajax 上传文件报错&quot;Uncaught TypeError: Illegal invocation&quot;

jS Ajax 上传文件报错"Uncaught TypeError: Illegal invocation" query-3.1.1.min.js:4 Uncaught TypeError: Illegal invocation 错误原因: jQuery Ajax 上传文件处理方式, 使用ajax向后台发送数据时其中的图片数据的参数类型为file,属于对象,而不是一个字符串值.导致错误的出现 var formData = new FormData(); formData.append(

node.js form 上传

安装formidablepm install [email protected] 客户端表单提交 <form class="form-signin" role="form" method="post" enctype='multipart/form-data'> <h2 class="form-signin-heading">上传文件</h2> <input id="fulA

formidable上传文件时出错"EXDEV, rename....."

使用formadble时   var form = new formidable.IncomingForm(); 没设置form.uploadDir(),默认使用的是os.tmpDir(),也就是操作系统当前用户的默认临时目录 执行上传文件命令时就报错"EXDEV, rename.....", 网上查询http://ouyo.info/show.php?pid=1898说是权限问题无法临时保存文件(没测试使用   writeFileSync). 就手动指定了一个目录from.uploa

使用ajaxfileupload.js异步上传文件到Servlet

前段时间帮同学做的毕业设计..好吧又是帮人做...需要上传文件,在这里使用了ajaxfileupload.js进行异步的上传文件到Servlet  ,后台保存了文件以后通过JSON返回文件路径到前端,好了废话不多说,直接上代码了... 前端页面比较简单 <input maxlength=16 type=file name="pic" id="pic" size=16 />  <input type="button" id=&qu

ajaxfileupload.js 异步上传文件

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%><%@ include file="/WEB-INF/views/include/taglib.jsp"%><%String path = request.getContextPath();String basePath = request.getScheme()