使用System.Text.Json的JsonConverter等效项

时间:2019-05-29 12:15:04

标签: c# json .net-core .net-core-3.0

我开始在.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中实现这一目标吗?

谢谢!

2 个答案:

答案 0 :(得分:9)

System.Text.Json现在在.NET 3.0 Preview-7及更高版本中支持自定义类型转换器。

您可以添加类型匹配的转换器,并使用JsonConverter属性为属性使用特定的转换器。

下面是在longstring之间进行转换的示例(因为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());
    }
}

通过将转换器添加到Converters的{​​{1}}列表中来注册转换器

JsonSerializerOptions

注意:当前版本尚不支持可空类型。

答案 1 :(得分:1)

您可以在命名空间JsonConverterAttribute中找到System.Text.Json.Serialization

https://docs.microsoft.com/en-us/dotnet/api/system.text.json.serialization.jsonconverterattribute?view=netcore-3.0