node.js从HTTP请求中解析表单数据

时间:2017-03-27 03:06:45

标签: node.js stream request

我对解析表单数据有一些疑问 我的解决方案是

aReq.pipe(parseFilesOrFields())
files.pipe(doFilesLogicStream())
fileds.pipe(otherLogicStream())

但我不知道如何在流上解析数据。

req.on('data',(chunk)=>{
  if(chunk.filename){
    fileStream()
  }
    fieldStream()
})

并且还需要fileStream和fieldStream将是承诺 - 。

0 个答案:

没有答案