dar*_*ace 12 javascript fetch node.js express multer
尝试将blob对象发送到我的节点服务器.在客户端,我正在使用MediaRecorder录制一些音频,然后我想将文件发送到我的服务器进行处理.
      saveButton.onclick = function(e, audio) {
        var blobData = localStorage.getItem('recording');
        console.log(blobData);
        var fd = new FormData();
        fd.append('upl', blobData, 'blobby.raw');
        fetch('/api/test',
          {
            method: 'post',
            body: fd
          })
        .then(function(response) {
          console.log('done');
          return response;
        })
        .catch(function(err){ 
          console.log(err);
        });
      }
这是我的快速路线,它使用了multer:
  var upload = multer({ dest: __dirname + '/../public/uploads/' });
  var type = upload.single('upl');
  app.post('/api/test', type, function (req, res) {
    console.log(req.body);
    console.log(req.file);
    // do stuff with file
  });
但是我的日志什么都没有
{ upl: '' }
undefined
花了很长时间在这上面,所以任何帮助赞赏!
Mic*_*ger 19
我只能运行上面示例的最低配置,它对我来说很好.
服务器:
var express = require('express');
var multer  = require('multer');
var app = express();
app.use(express.static('public')); // for serving the HTML file
var upload = multer({ dest: __dirname + '/public/uploads/' });
var type = upload.single('upl');
app.post('/api/test', type, function (req, res) {
   console.log(req.body);
   console.log(req.file);
   // do stuff with file
});
app.listen(3000);
HTML文件public:
<script>
var myBlob = new Blob(["This is my blob content"], {type : "text/plain"});
console.log(myBlob);
// here unnecessary - just for testing if it can be read from local storage
localStorage.myfile = myBlob;
var fd = new FormData();
fd.append('upl', localStorage.myfile, 'blobby.txt');
fetch('/api/test',
{
    method: 'post',
    body: fd
}); 
</script>
在console.log(myBlob);对前端的印刷Blob {size: 23, type: "text/plain"}.后端正在打印:
{}
{ fieldname: 'upl',
  originalname: 'blobby.txt',
  encoding: '7bit',
  mimetype: 'text/plain',
  destination: '/var/www/test/public/uploads/',
  filename: 'dc56f94d7ae90853021ab7d2931ad636',
  path: '/var/www/test/public/uploads/dc56f94d7ae90853021ab7d2931ad636',
  size: 23 }
也可以尝试使用硬编码的Blob,就像本例中的调试目的一样.
| 归档时间: | 
 | 
| 查看次数: | 13730 次 | 
| 最近记录: |