简体   繁体   English

阅读 Promise of Stream in nodejs 的 Props

[英]Read Props of Promise of Stream in nodejs

basically what I want to achieve is check in a middleware whether an uploaded file has the correct image type (png for example).基本上我想要实现的是在中间件中检查上传的文件是否具有正确的图像类型(例如 png)。 This is what I have come up with till now:到目前为止,这是我想出的:

export const fileCheckMiddleware = (req, res, next) => {
  const acceptedImageTypes = ["image/gif", "image/jpeg", "image/png"];

  const oldWrite = res.write;
  const oldEnd = res.end;

  const chunks = [];

  res.write = (...restArgs) => {
  chunks.push(new Buffer(restArgs[0]));
  oldWrite.apply(res, restArgs);
 };

  res.end = async (...restArgs) => {
if (restArgs[0]) {
  chunks.push(new Buffer(restArgs[0]));
}

const body = Buffer.concat(chunks).toString("utf8");

try {
  let parsedBody = {};
  try {
    parsedBody = JSON.parse(body);
  } catch (err) {
    parsedBody = { data: { unparsedBody: body } };
  }

  const { variables } = req.body;

  console.log("\x1b[1m%s\x1b[0m", "LOG variables", variables.file);
  if (variables.file) {
    console.log("\x1b[1m%s\x1b[0m", "LOG type", typeof variables.file);
  }
} catch (err) {}
oldEnd.apply(res, restArgs);
   };
  next();
};

The logged type of variables.file is an object. variables.file 的记录类型是一个对象。 And the result of the console.log is this: console.log 的结果是这样的:

LOG variables Promise {
 { filename: 'trump.jpeg',
   mimetype: 'image/jpeg',
   encoding: '7bit',
   createReadStream: [Function: createReadStream] } }

So how can I access the mimetype here?那么我怎样才能在这里访问 mimetype 呢? I tried to map over the keys, variables.file["Promise"],...我试图映射键,variables.file["Promise"],...

Promise is not a key of variables.file , it's the type of variables.file . Promise不是variables.file variables.file类型。 That means your code starts executing as soon as the HTTP request starts, and the file is received asynchronously, so you have to do something like:这意味着您的代码在 HTTP 请求开始后立即开始执行,并且文件是异步接收的,因此您必须执行以下操作:

variables.file.then(file => {
    // Do whatever you want with the file
    next();
});

Or declare the surrounding function as async and do this:或者将周围的function声明为async并执行以下操作:

const file = await variables.file;
// Do whatever you want with the file
next();

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM