删除 JArray 的成员



>我有以下JSON

[
    {
        "Code": "Global Payroll",
        "Month1": 1,
        "Month2": 0,
        "Month3": 0,
        "Month4": null,
        "Month5": null,
        "Month6": null,
        "Month7": null,
        "Month8": null,
        "Month9": null,
        "Month10": null,
        "Month11": null,
        "Month12": null,
        "YTD": 1,
        "PercentOfTotal": "16.67%"
    },
    {
        "Code": "GV Payroll",
        "Month1": 0,
        "Month2": 0,
        "Month3": 3,
        "Month4": null,
        "Month5": null,
        "Month6": null,
        "Month7": null,
        "Month8": null,
        "Month9": null,
        "Month10": null,
        "Month11": null,
        "Month12": null,
        "YTD": 3,
        "PercentOfTotal": "50.00%"
    }  
]

我想做的是以某种方式从 JSON 中删除 Month4、Month5 等,然后将其转换回字符串。

我尝试查看 JArray.remove 方法,但这会从数组中删除项目本身。有人可以告诉我如何从 JArray 中完全删除属性。

var array = JArray.Parse(json);
foreach (JObject elem in array)
{
   foreach (var elementToRemove in new List<string>() {"Month4", "Month5" })
   {
       elem.Property(elementToRemove).Remove();
    }              
}
var resultJson = array.ToString();

JArray 代表[](数组)

JObject 用于{}(对象)

Month1 .. Month12它们都是对象。在这种情况下,您需要使用JObject

JArray ja = JArray.Parse(json);
JObject jo = (JObject)ja[0];
jo.Property("Month4").Remove();
json = jo.ToString();

小提琴

您可以从JProperty调用Remove()来删除它们。此外,您可能只想删除名为"MonthX"且值为 null 的属性,而不是按名称删除特定属性。

var json = /* your json here */;
var payrolls = JArray.Parse(json);
foreach(var payroll in payrolls)
{
    foreach (var property in payroll.Children<JProperty>().ToArray())
    {
        if (property.Name.StartsWith("Month") && property.Value.Type == JTokenType.Null)
            property.Remove();
    }
}
json = payrolls.ToString();

相关内容

  • 没有找到相关文章

最新更新