ApolloLink 中的等待函数

Awaiting function inside ApolloLink

我的这部分代码在每次执行 apollo API 调用时都会运行。我的目标是在进行 API 调用之前检查用户是否已通过身份验证并拥有最新刷新的令牌。我的问题是我无法等待注释掉的行,因为函数不是 async

const authenticationLink = new ApolloLink((operation, forward) => {

  // const currentSession = await Auth.currentSession();
  // setAccessToken(currentSession.signInUserSession.idToken.jwtToken)

  if (typeof token === "string") {
    operation.setContext(() => ({
      headers: {
        Authorization: token
      }
    }));
  }

  return forward(operation);
});


const standardLink = ApolloLink.from([
  authenticationLink,
  httpLink
]);

如果我使 authenticationLink 异步,我是否需要更改下面的其他代码来等待它,还是可以保持不变?

await 与异步一起使用。 (More details here)

替换

const authenticationLink = new ApolloLink((operation, forward) => {

const authenticationLink = new ApolloLink(async (operation, forward) => {