将反序列化的 System.Text.Json 数据导入当前类型
Import deserialized System.Text.Json data into current type
我想从作为反序列化目标的 class 中导入 json 数据。 System.Text.Json 在没有额外映射的情况下这可能吗?理想情况下,我会使用“this”而不是泛型类型参数。我知道那是不可能的,但有没有类似的选择?这是我的有效测试代码,因为它创建数据对象只是为了将其映射到 属性。理想情况下,我不需要两次实例化“测试”。
public class Test
{
public string? Bar { get; set; }
public void ImportJson(string payload)
{
var data = System.Text.Json.JsonSerializer.Deserialize<Test>(payload);
Bar = data?.Bar; // Don't want to map
}
}
string foo = "{ \"Bar\": \"baz\" }";
var t = new Test();
t.ImportJson(foo);
Console.WriteLine(t.Bar);
你可以试试这个
string foo = "{ \"Bar\": \"baz\" }";
var t = new Test();
t.Deserialize(foo);
Console.WriteLine(t.Instance.Bar);
classes
public static class Util
{
public static void Deserialize<T>(this T obj, string json) where T : IImportJson<T>
{
obj.Instance=System.Text.Json.JsonSerializer.Deserialize<T>(json);
}
}
public class Test : ImportJson<Test>
{
public string? Bar { get; set;}
}
public interface IImportJson<T>
{
public T Instance { get; set; }
}
public class ImportJson<T>: IImportJson<T>
{
public T Instance { get; set; }
}
如果class属性不多,也可以这样
public interface IImportJson<T>
{
public void ImportJson (T obj);
}
public class Test : IImportJson<Test>
{
public string? Bar { get; set; }
public void ImportJson(Test test)
{
Bar=test.Bar;
}
}
我想从作为反序列化目标的 class 中导入 json 数据。 System.Text.Json 在没有额外映射的情况下这可能吗?理想情况下,我会使用“this”而不是泛型类型参数。我知道那是不可能的,但有没有类似的选择?这是我的有效测试代码,因为它创建数据对象只是为了将其映射到 属性。理想情况下,我不需要两次实例化“测试”。
public class Test
{
public string? Bar { get; set; }
public void ImportJson(string payload)
{
var data = System.Text.Json.JsonSerializer.Deserialize<Test>(payload);
Bar = data?.Bar; // Don't want to map
}
}
string foo = "{ \"Bar\": \"baz\" }";
var t = new Test();
t.ImportJson(foo);
Console.WriteLine(t.Bar);
你可以试试这个
string foo = "{ \"Bar\": \"baz\" }";
var t = new Test();
t.Deserialize(foo);
Console.WriteLine(t.Instance.Bar);
classes
public static class Util
{
public static void Deserialize<T>(this T obj, string json) where T : IImportJson<T>
{
obj.Instance=System.Text.Json.JsonSerializer.Deserialize<T>(json);
}
}
public class Test : ImportJson<Test>
{
public string? Bar { get; set;}
}
public interface IImportJson<T>
{
public T Instance { get; set; }
}
public class ImportJson<T>: IImportJson<T>
{
public T Instance { get; set; }
}
如果class属性不多,也可以这样
public interface IImportJson<T>
{
public void ImportJson (T obj);
}
public class Test : IImportJson<Test>
{
public string? Bar { get; set; }
public void ImportJson(Test test)
{
Bar=test.Bar;
}
}