1

我喜欢 apollo-angular 文档中建议的全局设置。我不确定是否将 errorLink 放入选项中,或者是否应将其与 httpLink 分组。

最大的问题是:如何在我的代码中使用它?我在任何地方都找不到示例,也不知道如何开始。我的脑海中还没有 apollo-link-error 的概念。

app.module.ts

...
import { ApolloModule, APOLLO_OPTIONS } from 'apollo-angular';
import { HttpLinkModule, HttpLink } from 'apollo-angular-link-http';
import { onError } from 'apollo-link-error';

// This is just a copy and past from the docs at this time.

const errorLink = onError(({ graphQLErrors, networkError }) => {
  if (graphQLErrors)
    graphQLErrors.map(({ message, locations, path }) =>
        console.log(
            `[GraphQL error]: Message: ${message}, Location: ${locations}, Path: ${path}`,
        ),
    );
  if (networkError) console.log(`[Network error]: ${networkError}`);
});

@NgModule({
  imports: [
    ...
  ],
  declarations: [
    ...
  ],
  providers: [
    ...
    { provide: APOLLO_OPTIONS,
      useFactory: (httpLink: HttpLink) => {
        return {
          cache: new InMemoryCache(),
          link: httpLink.create({
            uri: 'http://localhost:3000/graphql',
          }),
          options: {
            errorLink
          },
          defaultOptions: {
          }
        };
      },
      deps: [HttpLink]
    },
  ],

})
export class AppModule { }

带有查询的组件:

this.apollo
        .watchQuery({
            query: getAllMembers,
        })
        .valueChanges
        .subscribe(result => {
            if (result !== null) {
                this.dataSource.data = result.data['getMembers'];
            } else {
// What should be here???  This doesn't seem to work.
                console.log('errors ', result.errors);
            }
        });
4

1 回答 1

3

我有同样的问题。Apollo-link-error 就像一个中间件,您可以使用它来拦截代码中单个位置的错误,并使用它进行一些通用的错误处理。如果您想将该错误传播到服务或组件,还有一个额外的步骤:我注意到错误详细信息已从响应中删除,除非您使用:

apollo.watchQuery({
   ..., // options
   errorPolicy: 'all'
 });

这样您就可以检查服务的响应,并查找“数据”和“错误”。如果它是一个验证错误,它是一个带有错误对象的 http 200。然后,您可以将该错误传播到组件,并将其用于在表单上显示错误消息等。

欲了解更多信息:

https://www.apollographql.com/docs/react/data/error-handling/ https://www.apollographql.com/docs/angular/features/error-handling/#error-policies

希望能帮助到你!

于 2020-01-17T15:00:42.430 回答