Coder Social home page Coder Social logo

koa-formidable's Issues

the events of formidable do not work.

  console.log('start upload');
  let newPath = '';
  const form = new require('formidable').IncomingForm(); 
  form.encoding = 'utf-8'; 
  form.uploadDir = AVATAR_PATH; 
  form.keepExtensions = true; 
  form.maxFieldsSize = 2 * 1024 * 1024; 
  form.on('fileBegin', function(name, file) {
      console.log(name, file);
      console.log('type:', file.fulAvatar.type);
      const avatarName = UUID.v4() + '.' + extName;
      newPath = form.uploadDir + avatarName;
      file.path = newPath;
  });
  form.on('aborted', function() {
    console.log('aborted');
  });
  form.on('end', function() {
    console.log('end');
  });
  form.on('error', function(err) {
    console.log(error);
  });
  const result = yield formidable.parse(form, this.request);

the 'fileBegin', 'aborted', 'end', all of these events do not work. How to fix it?

upload progress?

hi

everything is in the title, can t get it working

just doing a simple

var form = yield formidable.parse(this);
console.log(form)
form.on('progress', function(bytesReceived, bytesExpected) {
      console.log(bytesReceived, bytesExpected)
});

TypeError: form.on is not a function

how can we do please?

thanks

deprecation warning

.write(string, encoding, offset, length) is deprecated. Use write(string[, offset[, length]][, encoding]) instead.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.