9

我在服务器上使用 GraphQL 和 mongoose。

当发生验证错误时,GraphQL 突变会发送状态码为 200 的响应。在客户端,响应如下所示:

{
  "data": null,
  "errors": [{
    "message": "error for id...",
    "path": "_id"
  }]
}

我想使用catchapollo-client 突变承诺的功能来访问验证错误。就像是:

      this.props.deleteProduct(this.state.selectedProductId).then(response => {
         // handle successful mutation
      }).catch(response => {
         const errors = response.errors; // does not work
         this.setState({ errorMessages: errors.map(error => error.message) });
      });

如何才能做到这一点?

4

3 回答 3

6

@stubailo 之前的回答似乎并未涵盖所有用例。如果我在服务器端代码上抛出错误,则响应代码将不同于 200,并且将使用.catch()和不使用.then().

链接到 GitHub 上的问题。

最好的方法可能是同时处理 和 上的.then()错误.catch()

const { deleteProduct } = this.props;
const { selectedProductId } = this.state;

deleteProduct(selectedProductId)
  .then(res => {
      if (!res.errors) {
          // handle success
      } else {
          // handle errors with status code 200
      }
  })
  .catch(e => {
      // GraphQL errors can be extracted here
      if (e.graphQLErrors) {
          // reduce to get message
          _.reduce(
             e.graphQLErrors,
             (res, err) => [...res, error.message],
             []
          );
      }
   })
于 2017-09-23T10:27:12.290 回答
2

注意:这个答案(可以说是整个问题)现在已经过时了,因为突变错误出现在catch更新版本的 Apollo Client 中。

来自突变的 GraphQL 错误当前显示在errors内部响应的字段中then。我认为肯定有人声称它们应该出现在catch,但这里有一个来自GitHunt的突变片段:

// The container
const withData = graphql(SUBMIT_REPOSITORY_MUTATION, {
  props: ({ mutate }) => ({
    submit: repoFullName => mutate({
      variables: { repoFullName },
    }),
  }),
});

// Where it's called
return submit(repoFullName).then((res) => {
  if (!res.errors) {
    browserHistory.push('/feed/new');
  } else {
    this.setState({ errors: res.errors });
  }
});
于 2017-04-21T04:09:52.697 回答
2

使用 graphql 标记符号,您可以访问错误:

<Mutation mutation={UPDATE_TODO} key={id}>
        {(updateTodo, { loading, error }) => (
          <div>
            <p>{type}</p>
            <form
              onSubmit={e => {
                e.preventDefault();
                updateTodo({ variables: { id, type: input.value } });

                input.value = "";
              }}
            >
              <input
                ref={node => {
                  input = node;
                }}
              />
              <button type="submit">Update Todo</button>
            </form>
            {loading && <p>Loading...</p>}
            {error && <p>Error :( Please try again</p>}
          </div>
        )}
      </Mutation>

https://www.apollographql.com/docs/react/essentials/mutations.html

于 2019-03-02T16:17:12.710 回答