Add JObject to JObject

前端 未结 3 1297
北海茫月
北海茫月 2021-01-03 23:21

I have a json structure like this:

3条回答
  •  执念已碎
    2021-01-03 23:37

    json["report"] = new JObject
        {
            { "name", fm.Name }
        };
    

    Newtonsoft is using more direct-like approach, where You can access any property via square brackets []. You just need to set the JObject, which have to be created based on Newtonsoft specifics.

    Full code:

    var json = JObject.Parse(@"
    {
        ""report"": {},
        ""expense"": {},
        ""invoices"": {},
        ""settings"": {
            ""users"" : {}
        },
    }");
    
    Console.WriteLine(json.ToString());
    
    json["report"] = new JObject
        {
            { "name", fm.Name }
        };
    
    Console.WriteLine(json.ToString());
    

    Output:

    {
      "report": {},
      "expense": {},
      "invoices": {},
      "settings": {
        "users": {}
      }
    }
    
    {
      "report": {
        "name": "SomeValue"
      },
      "expense": {},
      "invoices": {},
      "settings": {
        "users": {}
      }
    }
    

    As a reference, You can look at this link: https://www.newtonsoft.com/json/help/html/ModifyJson.htm

提交回复
热议问题