MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Speichern des Datenstroms von der POST-Anfrage in GridFS, Express, MongoDB, node.js

gridfs-stream macht das ziemlich einfach:

// `gfs` is a gridfs-stream instance
app.post('/picture', function(req, res) {
  req.pipe(gfs.createWriteStream({
    filename: 'test'
  }));
  res.send("Success!");
});