RESTful服务和JSON数组

时间:2017-09-13 16:37:22

标签: c# rest asp.net-web-api json.net

我有一个.NET Core 1.x Web API项目,我试图在HTTP帖子上接受一个数组,但我一直无法使用它。我已经验证了以下JSON

    {
    "LogEntry": [{
        "a": 1238976,
        "b": "test",
        "c": "sub test",
        "d": "some syb system comp",
        "e": 1234,
        "f": "my category",
        "g": "my event name",
        "h": "my sub event",
        "i": "user def 1",
        "j": "7/22/2008 12:11:04 PM",
        "k": 45,
        "l": 65,
        "n": "Chris",
        "o": "C:\\temp\\",
        "p": 1234567890,
        "q": 84,
        "r": "eeeee stuff",
        "s": "ddddd stuff",
        "t": 90210
    }]
}

我有一个模型类,所以我需要将每个数组项添加到模型类型的列表中。这是我被困的地方。我只能使用不在数组中的单个条目来使用它。我的C#就是这个场景:

    [HttpPost]
    public string Post([FromBody] JObject test)
    {

     var result = JsonConvert.DeserializeObject<EventManagerLogEntry>(test.ToString());

        return "wootwoot";
    }

关于如何遍历jObject中的每个数组并将其添加到类型列表中的任何方向都将非常有用。

课程定义

public class EventManagerLogEntry
    {

        public int a { get; set; }
        public string b { get; set; }
        public string c { get; set; }
        public string d { get; set; }
        public int e { get; set; }
        public string f { get; set; }
        public string g { get; set; }
        public string h { get; set; }
        public string i { get; set; }
        public string j { get; set; }
        public int k { get; set; }            
        public int l { get; set; }
        public string m { get; set; }
        public string n { get; set; }            
        public int o { get; set; }
        public int p { get; set; }
        public string q { get; set; }
        public string r { get; set; }          
        public int s { get; set; }

    }

更新 我尝试了几种不同的方法,这似乎对我有用。

    [HttpPost]
    public HttpResponseMessage Post([FromBody] JArray test)
    {

        var list = JsonConvert.DeserializeObject<List<EventManagerLogEntry>>(test.ToString());


        foreach (EventManagerLogEntry x in list)
        {

            //_context.EventManagerLogEntry.Attach(x);
            //_context.SaveChanges();
        }

        return new HttpResponseMessage(System.Net.HttpStatusCode.OK);
    }

3 个答案:

答案 0 :(得分:1)

使用此模型反序列化您的json

public class Log
{
    public List<Dictionary<string,string>> LogEntry { get; set; }
}



var log = JsonConvert.DeserializeObject<Log>(json);

您也可以使用linq

var jObj = JObject.Parse(json);

var listOfDict = jObj["LogEntry"]
                    .Select(x => x.Cast<JProperty>()
                                .ToDictionary(p => p.Name, p => p.Value))
                    .ToList();

答案 1 :(得分:1)

只需将您的模型更改为此。

    public class EventManagerLogEntry
    {
        [JsonProperty("LogEntry")]
        public List<Node> LogEntries { get; set; }
    }
    public class Node 
    {
        public int a { get; set; }
        public string b { get; set; }
        public string c { get; set; }
        public string d { get; set; }
        public int e { get; set; }
        public string f { get; set; }
        public string g { get; set; }
        public string h { get; set; }
        public string i { get; set; }
        public string j { get; set; }
        public int k { get; set; }            
        public int l { get; set; }
        public string m { get; set; }
        public string n { get; set; }            
        public int o { get; set; }
        public int p { get; set; }
        public string q { get; set; }
        public string r { get; set; }          
        public int s { get; set; }
    }

简单的反序列化对象。

var obj = JsonConvert.DeserializeObject<EventManagerLogEntry>(yourjson);

答案 2 :(得分:0)

您可以通过几项改进来实现这一目标。首先,您不需要手动反序列化您的json。

public class Value
{
    public String Name { get; set; }
}

...

[HttpPost("one")]
public void Post([FromBody] Value value)
{
    Console.WriteLine("got one");
}

[HttpPost("many")]
public void Post([FromBody] Value[] value)
{
    Console.WriteLine("got many");
}

您可以在POST方法中使用类定义来自动从json获取对象。

其次,你可以做以下两件事之一:

  1. 仅将数组json发布到服务器并使用数组
  2. 创建一个新模型,将您的列表封装为@ L.B提到。
  3. 以下是发送到上述路由的json数据。

    One
    { "name" : "test" }
    
    Many
    [{ "name" : "test" }]