8

我正在构建一个简单的 HotChocolate GraphQl 服务器,HotChocolate 会抛出一个Unexpected Execution Error,但不会公开有关错误的任何信息,只要我针对它发布请求。我如何将请求发布到后端(BananaCakePop、Postman、Insomnia...)并不重要。
响应如下所示:

{
  "errors": [
    {
      "message": "Unexpected Execution Error",
      "locations": [
        {
          "line": 2,
          "column": 3
        }
      ],
      "path": [
        "pong"
      ]
    }
  ],
  "data": {
    "pong": null
  }
}

请求响应不包含更多信息,并且没有任何内容记录到应用程序控制台。尝试找出问题所在的合理下一步是什么?

4

1 回答 1

11

如果没有附加调试器,默认情况下 HotChocolate 不会公开异常的详细信息。因此,要获取您的错误消息,您可以:

  • 将调试器附加到您的服务器,然后它将在请求中公开异常详细信息(也就是在调试中启动您的服务器:D)
  • 以更适合您的开发风格的方式更改此行为。

您可以通过以下方式更改 V11 或 V12 中的默认行为:

public class Startup
{
    private readonly IWebHostEnvironment _env;

    public Startup(IWebHostEnvironment env)
    {
        _env = env;
    }

    public void ConfigureServices(IServiceCollection services)
    {
        services
            .AddGraphQLServer()
            ...
            // You can change _env.IsDevelopment() to whatever condition you want.
            // If the condition evaluates to true, the server will expose it's exceptions details
            // within the reponse.
            .ModifyRequestOptions(opt => opt.IncludeExceptionDetails = _env.IsDevelopment());  
    }
}

这是您可以在 V10 中更改默认行为的方法:

public class Startup
{
    private readonly IWebHostEnvironment _env;

    public Startup(IWebHostEnvironment env)
    {
        _env = env;
    }

    public void ConfigureServices(IServiceCollection services)
    {
        services.AddGraphQL(
            Schema.Create(builder =>
            {
                ...
            }),
            // You can change _env.IsDevelopment() to whatever condition you want.
            // If the condition evaluates to true, the server will expose it's exceptions details
            // within the reponse.
            new QueryExecutionOptions {IncludeExceptionDetails = _env.IsDevelopment()}
        );
    }
}

您还可以将 IErrorFilter 添加到您的应用程序,例如,可以将您的异常记录到您的语言环境控制台,或将异常转换为 GraphQlErrors。有关此主题的更多信息,请查看:

于 2021-01-17T18:19:09.090 回答