MvcOptions.InputFormatters不能在asp.net vnext beta7上工作
本文关键字:vnext beta7 工作 net asp InputFormatters 不能 MvcOptions | 更新日期: 2023-09-27 18:08:40
我的应用程序在迁移到beta 6/7后停止工作,经过调查,我发现我的json反序列化器不再使用(Jil),它被称为写入而不是读取。
现在已经3天了,我正在搜索论坛和阅读asp.net代码,但我还没有发现这个问题。
我注意到JSON.net在beta 6中无处不在,在beta 7中使用得少一些。
下面是我的代码: public void ConfigureServices(IServiceCollection services)
{
services.AddMvcCore(options =>
{
var jilFormatter = new JilMediaTypeFormatter();
options.OutputFormatters.Clear();
options.OutputFormatters.Add(jilFormatter);
options.InputFormatters.Clear();
options.InputFormatters.Add(jilFormatter);
options.FormatterMappings.SetMediaTypeMappingForFormat("json", MediaTypeHeaderValue.Parse("application/json"));
options.ModelBinders.Add(new DocumentModelBinder());
options.ModelBinders.Add(new DataTablesBinder());
});
services.AddDataProtection();
services.AddWebEncoders();
}
即使我只做InputFormatters.Clear()而不添加对象,它也会继续反序列化请求,我不知道它是如何做到的。
和我的JIL InputFormatter/OutputFormatter (ouputformatter工作,我可以打破CanWrite,但没有发生的CanRead)
internal class JilMediaTypeFormatter : IOutputFormatter, IInputFormatter
{
private static readonly string [] _readableTypes = new[] { "application/json", "text/json", "text/javascript" };
private static readonly Task<bool> _done = Task.FromResult(true);
private readonly Options _options = Options.RFC1123ExcludeNullsIncludeInherited;
public bool CanWriteResult(OutputFormatterContext context, Microsoft.Net.Http.Headers.MediaTypeHeaderValue contentType)
{
return contentType ==null || _readableTypes.Contains(contentType.MediaType.ToLowerInvariant());
}
public Task WriteAsync(OutputFormatterContext context)
{
context.HttpContext.Response.ContentType = "application/json";
using (var writer = new StreamWriter(context.HttpContext.Response.Body))
{
JSON.Serialize(context.Object, writer, _options);
writer.Flush();
return _done;
}
}
public bool CanRead(InputFormatterContext context)
{
return _readableTypes.Contains(context.HttpContext.Request.ContentType);
}
public Task<object> ReadAsync(InputFormatterContext context)
{
var reader = new StreamReader(context.HttpContext.Request.Body);
var result = JSON.Deserialize(reader, context.ModelType, _options);
return Task.FromResult(result);
}
}
InputFormatters仅在动作的参数列表中使用[FromBody]时使用。