繁体   English   中英

如何在以下情况下正确使用 async-await?

[英]How do I use async-await properly in the following situation?

我正在努力处理异步等待块。 我查看了网上的多种资源,但我就是不明白我在这里做错了什么:

app.post('/api/my-api', async (req, res, next) => {
try {
    filecontent = req.files.userFile.data.toString('utf8')
    console.log("decoded file : ", filecontent);
    let encoded_file = new Buffer(filecontent).toString('base64');
    var apiClass = new RPC("http://localhost:1006", "my-api");

    //the asynchronous function :
    const answ = await apiMethod.call("api", [{"file" : encoded_file, "fileName":req.files.userFile.name}], res.json);

    //the code I'd like to execute only after the previous function has finished :
    console.log("answer : ", answ);
    console.log("answering...");
    res.json(answ);
} catch (err) {
    console.log(err);
}

显然我的console.logawait行完成之前执行。 我可以说出来,因为异步 function 中也有一个console.log() ,并且我的res.json answ已发送。

如何确保异步 function 在代码的 rest 之前完成?

编辑:这里是 apiMethod.call function:

call(id, params) {
    let options = {
        url: this.url,
        method: "post",
        headers:
        { 
         "content-type": "text/plain"
        },
        body: JSON.stringify( {"jsonrpc": "2.0", "id": id, "method": this.procedure, "params": params })
    };
    console.log(options);
    request(options, (error, response, body) => {
        if (error) {
            console.error('An error has occurred: ', error);
        } else {
            console.log('Post successful: response: ', body);
        }
    });
}

问题正在call function。 由于它具有异步代码( request调用),因此应将其包装在 promise 中,该代码应从request的回调 function 中解决。

将调用 function 更新为如下内容应该会有所帮助:

function call(id, params) {
  return new Promise((resolve, reject) => {
    let options = {
      url: this.url,
      method: "post",
      headers: {
        "content-type": "text/plain",
      },
      body: JSON.stringify({
        jsonrpc: "2.0",
        id: id,
        method: this.procedure,
        params: params,
      }),
    };
    console.log(options);
    request(options, (error, response, body) => {
      if (error) {
        console.error("An error has occurred: ", error);
        reject(error);
      } else {
        console.log("Post successful: response: ", body);
        resolve(body);
      }
    });
  })
}

暂无
暂无

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

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