2018-08-23

2018-08-23  本文已影响0人  HupuJRs001

Node.js实现在线文件管理工具

  1. 需求
    文件列表展示
    文件上传下载
  2. 依赖模块
    fs
    path
    express
    body-parser
    multer
  3. 安装依赖
    在node环境下全局安装express 和本地生成express
$ npm install -g express
$ express firstfile
$ cd firstfile
$ npm install
$ DEBUG=firstfile:* npm start

效果图


image.png
  1. body-parser - node.js 中间件,用于处理 JSON, Raw, Text 和 URL 编码的数据。
    multer - node.js 中间件,用于处理 enctype="multipart/form-data"(设置表单的MIME编码)的表单数据。
    不对字符编码。
    在使用包含文件上传控件的表单时,必须使用该值。
    需要配和express使用,安装命令
$ cnpm install body-parser --save

$ cnpm install multer --save
上一篇下一篇

猜你喜欢

热点阅读