简体   繁体   English

将 async-await 与 node-fetch 结合使用不会将响应返回给调用方法

[英]Using async-await with node-fetch does not return the response to the calling method

I have a function defined in a module that is supposed to do a fetch and return the response.我在模块中定义了一个函数,该函数应该执行获取并返回响应。 I am having trouble returning the response from the fetch.我在从 fetch 返回响应时遇到问题。 The calling function gets the return value as "undefined".调用函数将返回值设为“未定义”。

I am new to JavaScript and Node so might need a little bit of hand-holding if you don't mind.我是 JavaScript 和 Node 的新手,所以如果你不介意的话,可能需要一点帮助。

Calling function调用函数

async function executeTest() {
    try {
        const response = await bpc.postLendingApplication(
            blendConnection,
            loanData
        );
        console.log("Response from POST Loan: ", response);
    } catch (error) {
        console.log(error);
    }
}

Module function doing the fetch request执行获取请求的模块函数

const fetch = require("node-fetch");
async function postLendingApplication(connection, data) {
    console.log("Processing POST Loan.");
    await fetch(connection.url, {
        method: "POST",
        headers: connection.headers,
        body: data,
    }).then(async res => {
        console.log("Status: ", res.status);
        console.log("StatusText: ", res.statusText);
        console.log("OK: ", res.ok);
        return await res;
    });
}

The console output is:控制台输出是:

Processing POST Loan.
Status:  200
StatusText:  OK
OK:  true
Response from POST Loan:  undefined

As you can see, the fetch did what it was supposed to do and if I log the res.json() within the module method, it prints the payload.如您所见,fetch 完成了它应该做的事情,如果我在模块方法中记录 res.json(),它会打印有效负载。 But I would like to return the error and response from the fetch so the module behaves as a generic method and the processing and error handling is done in the calling method.但我想从 fetch 返回错误和响应,以便模块表现为通用方法,并且处理和错误处理在调用方法中完成。

When you mark a function as async , JavaScript will always return a Promise , thus making it asynchronous.当您将function标记为async ,JavaScript 将始终返回一个Promise ,从而使其异步。 When you return a value, it is resolving the Promise .当您返回一个值时,它正在解析Promise Using await inside of these functions "pauses" execution (it is technically creating a new function for code that occurs after the await ) until the awaited Promise is resolved, standing in place of the usage of then(callback) .在这些函数中使用await “暂停”执行(从技术上讲,它为await之后发生的代码创建一个新函数),直到等待的Promise得到解决,代替then(callback) As such, you don't need then inside of any async function .因此,您不需要then在任何async function

You do, however, need to treat your own async function as a Promise .但是,您确实需要将自己的async function视为Promise

const fetch = require("node-fetch");
async function postLendingApplication(connection, data) {
    try {
      console.log("Processing POST Loan.");

      // the await eliminates the need for .then
      const res = await fetch(connection.url, {
          method: "POST",
          headers: connection.headers,
          body: data,
      })
      // this code is resumed once the fetch Promise is resolved.
      // res now has a value.
      console.log("Status: ", res.status);
      console.log("StatusText: ", res.statusText);
      return res;
   }
   catch(err) { 
     // because the promise could error, it is advised to use
     // try/catch. With a Promise, you would .then(cb).catch(errHandler)
     // but async/await doesn't utilize callbacks.

     // perform error handling or you can bubble it up.
    throw err
}

When calling postLendingApplication(connection, data) make sure that you are either using await , if inside an async function or postLendingApplication(connection, data).then(callback) as the return value will be a Promise .调用postLendingApplication(connection, data) ,请确保您使用await ,如果在async function或者postLendingApplication(connection, data).then(callback)作为返回值将是Promise

postLendingApplication(connection, data).then(callback).catch(errHandler)

You forget to return form function.您忘记返回表单功能。 return await fetch(connection.url, { You dont need async-await in then function. You can return res.json() return await fetch(connection.url, {你不需要在then函数中使用async-await 。你可以返回res.json()

const fetch = require("node-fetch");
async function postLendingApplication(connection, data) {
    console.log("Processing POST Loan.");
    return await fetch(connection.url, {
        method: "POST",
        headers: connection.headers,
        body: data,
    }).then(res => {
        console.log("Status: ", res.status);
        console.log("StatusText: ", res.statusText);
        console.log("OK: ", res.ok);
        return res.json();
    });
}

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

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