JsonConverter 等效于使用 System.Text.Json
JsonConverter equivalent in using System.Text.Json
我开始将 .net Core 3.0 应用程序中的一些代码从 Newtonsoft.Json
迁移到 System.Text.Json
。
我从
迁移了属性
[JsonProperty("id")]
到 [JsonPropertyName("id")]
但我有一些属性用 JsonConverter
属性修饰为:
[JsonConverter(typeof(DateTimeConverter))]
[JsonPropertyName("birth_date")]
DateTime BirthDate{ get; set; }
但是我在 System.Text.Json
中找不到这个 Newtonsoft 转换器的等效项 有人知道如何在 .net Core 3.0 中实现吗?
谢谢!
System.Text.Json
现在支持 .NET 3.0 preview-7 及更高版本中的自定义类型转换器。
您可以添加匹配类型的转换器,并使用 JsonConverter
属性为 属性 使用特定的转换器。
这里有一个在 long
和 string
之间转换的例子(因为 javascript 不支持 64 位整数)。
public class LongToStringConverter : JsonConverter<long>
{
public override long Read(ref Utf8JsonReader reader, Type type, JsonSerializerOptions options)
{
if (reader.TokenType == JsonTokenType.String)
{
// try to parse number directly from bytes
ReadOnlySpan<byte> span = reader.HasValueSequence ? reader.ValueSequence.ToArray() : reader.ValueSpan;
if (Utf8Parser.TryParse(span, out long number, out int bytesConsumed) && span.Length == bytesConsumed)
return number;
// try to parse from a string if the above failed, this covers cases with other escaped/UTF characters
if (Int64.TryParse(reader.GetString(), out number))
return number;
}
// fallback to default handling
return reader.GetInt64();
}
public override void Write(Utf8JsonWriter writer, long value, JsonSerializerOptions options)
{
writer.WriteStringValue(value.ToString());
}
}
通过将转换器添加到 JsonSerializerOptions
中的 Converters
列表来注册转换器
services.AddControllers().AddJsonOptions(options =>
{
options.JsonSerializerOptions.Converters.Add(new LongToStringConverter());
});
注意:当前版本尚不支持可空类型。
您可以在命名空间 System.Text.Json.Serialization
中找到 JsonConverterAttribute
。
我开始将 .net Core 3.0 应用程序中的一些代码从 Newtonsoft.Json
迁移到 System.Text.Json
。
我从
迁移了属性[JsonProperty("id")]
到 [JsonPropertyName("id")]
但我有一些属性用 JsonConverter
属性修饰为:
[JsonConverter(typeof(DateTimeConverter))]
[JsonPropertyName("birth_date")]
DateTime BirthDate{ get; set; }
但是我在 System.Text.Json
中找不到这个 Newtonsoft 转换器的等效项 有人知道如何在 .net Core 3.0 中实现吗?
谢谢!
System.Text.Json
现在支持 .NET 3.0 preview-7 及更高版本中的自定义类型转换器。
您可以添加匹配类型的转换器,并使用 JsonConverter
属性为 属性 使用特定的转换器。
这里有一个在 long
和 string
之间转换的例子(因为 javascript 不支持 64 位整数)。
public class LongToStringConverter : JsonConverter<long>
{
public override long Read(ref Utf8JsonReader reader, Type type, JsonSerializerOptions options)
{
if (reader.TokenType == JsonTokenType.String)
{
// try to parse number directly from bytes
ReadOnlySpan<byte> span = reader.HasValueSequence ? reader.ValueSequence.ToArray() : reader.ValueSpan;
if (Utf8Parser.TryParse(span, out long number, out int bytesConsumed) && span.Length == bytesConsumed)
return number;
// try to parse from a string if the above failed, this covers cases with other escaped/UTF characters
if (Int64.TryParse(reader.GetString(), out number))
return number;
}
// fallback to default handling
return reader.GetInt64();
}
public override void Write(Utf8JsonWriter writer, long value, JsonSerializerOptions options)
{
writer.WriteStringValue(value.ToString());
}
}
通过将转换器添加到 JsonSerializerOptions
Converters
列表来注册转换器
services.AddControllers().AddJsonOptions(options =>
{
options.JsonSerializerOptions.Converters.Add(new LongToStringConverter());
});
注意:当前版本尚不支持可空类型。
您可以在命名空间 System.Text.Json.Serialization
中找到 JsonConverterAttribute
。