我正在处理一个返回类似内容的API:
{"v1.ProjectList":
{
"self_link": { "href": "https://central-staged:8880/api/v1/projects", "methods": "GET" },
"items": [],
"register": {"href": "https://central-staged:8880/api/v1/projects/register", "methods": "POST"},
"max_active": {"href": "https://central-staged:8880/api/v1/projects/max-active", "methods": "GET"}
}
}
我正在生成一堆DTO以适应该JSON字符串的反序列化。
namespace v1
{
public class Project
{
public rest_common.Link branches { get; set; }
public float coordinate_x { get; set; }
public float coordinate_y { get; set; }
public string description { get; set; }
public int id { get; set; }
public string location { get; set; }
public string name { get; set; }
public rest_common.Link publish_events { get; set; }
public rest_common.Link self_link { get; set; }
public rest_common.Link thumbnail { get; set; }
public System.Guid uuid { get; set; }
}
[JsonObject(Title = "v1.ProjectList")]
public class ProjectList
{
public List<Project> items { get; set; }
public rest_common.Link max_active { get; set; }
public rest_common.Link register { get; set; }
public rest_common.Link self_link { get; set; }
}
}
namespace rest_common
{
public class Link
{
public string href { get; set; }
public string methods { get; set; }
}
}
该代码是从服务器端代码生成的,我可以修改它以适应。我目前唯一无法修改的是服务器返回的JSON响应。
我正在试图弄清楚如何反序列化:
class Program
{
static void Main(string[] args)
{
var jsonContent = "{\"v1.ProjectList\": {\"self_link\": {\"href\": \"https://something.com/getblah\", \"methods\": \"GET\"}, \"items\": [], \"register\": {\"href\": \"https://something.com/postblah\", \"methods\": \"POST\"}, \"max_active\": {\"href\": \"https://something.com/getblah2\", \"methods\": \"GET\"}}}";
var projectList = JsonConvert.DeserializeObject<ProjectList>(jsonContent);
Console.ReadLine();
}
}
目前projectList
是正确类的实例,但其所有成员都是null
。
答案 0 :(得分:2)
您正在尝试反序列化包含名为v1.ProjectList
的单个属性的对象。所以创建这样的类:
public class ProxyObject
{
[JsonPropertyAttribute("v1.ProjectList")]
public ProjectList ProjectList { get; set;}
}
..然后这有效:
var projectList = JsonConvert.DeserializeObject<ProxyObject>(jsonContent).ProjectList;
属性[JsonObject(Title = "v1.ProjectList")]
是不必要的。
答案 1 :(得分:0)
可替换地, 因为你正在创建一个新的类实例,你正在反序列化JSON的字符串,表明:
var projectList = new (ProjectList)(JsonConvert.DeserializeObject<ProjectList>(jsonContent));