Как получить текущие параметры JsonSerializerOptions в ASP.NET Core 3.1?
Я использую System.Text.Json и устанавливаю JsonSerializerOptions в методе ConfigureServices файла Startup.cs
public void ConfigureServices(IServiceCollection services)
{
...
services.AddControllers()
.AddJsonOptions(options =>
{
options.JsonSerializerOptions.PropertyNamingPolicy = JsonNamingPolicy.CamelCase;
});
...
}
Теперь я хочу получить текущий JsonSerializerOptions в CustomErrorHandlingMiddleware
public async Task InvokeAsync(HttpContext context)
{
try
{
await _next(context);
}
catch (Exception exc)
{
var response = new SomeObject();
var currentJsonSerializerOptions = ? //I want get CurrentJsonSerializerOptions here
var result = System.Text.Json.JsonSerializer.Serialize(response, currentJsonSerializerOptions);
context.Response.ContentType = "application/json";
context.Response.StatusCode = 500;
await context.Response.WriteAsync(result);
}
}
Как я могу этого добиться? Спасибо.
2 ответа
Решение
Вы могли ввести IOptions<JsonOptions>
или IOptionsSnapshot<JsonOptions>
в соответствии с шаблоном параметров в ваше промежуточное ПО.
public async Task Invoke(HttpContext httpContext, IOptions<JsonOptions> options)
{
JsonSerializerOptions serializerOptions = options.Value.JsonSerializerOptions;
await _next(httpContext);
}
Вы можете написать класс промежуточного программного обеспечения, который наследуется от ActionResult следующим образом
public override Task ExecuteResultAsync(ActionContext context)
{
var httpContext = context.HttpContext;
var response = httpContext.Response;
response.ContentType = "application/json; charset=utf-8";
response.StatusCode = (int) _statusCode;
var options = httpContext.RequestServices.GetRequiredService<IOptions<JsonOptions>>().Value;
return JsonSerializer.SerializeAsync(response.Body, _result, _result.GetType(), options.JsonSerializerOptions);
}