我的json:
"CustomData": [
{
"Key": "RegistrationWrx",
"Value": "Wrx45687",
"Id": 462,
},
{
"Key": "IsConsentGiven",
"Value": "True",
"Id": 463,
},
我用它来获取一些值:
string fetchResult = JsonConvert.SerializeObject(sidebar, Formatting.Indented);
JObject rss = JObject.Parse(fetchResult);
ConsentGiven = rss["RegistrationCase"]["CustomData"][1]["Value"].Value<string>(),
但我想查看“密钥”,例如在“CustomData”上显示“Value”。我想我需要做一些事情:
ConsentGiven = rss["RegistrationCase"]["CustomData"].Where(["Key"]=="IsConstantGiven")["Value"].Value<string>(),
答案 0 :(得分:2)
你的问题得到了几个标记,因为它有点模糊。
但是,我想我明白你需要什么......
我最容易解析json内容的方法是先将其转换。
所以创建和类匹配你传入的json:
public class CustomData{
public string Key {get;set;}
public string Value {get;set}
public int? ID {get;set;}
}
然后,在你使用什么方法读取json,实例化和该类型的对象转换它。
public CustomData ConvertCustomDataJson(string jsonString)
{
List<CustomData> customData = JsonConvert.DeserializeObject<List<CustomData>>(jsonString);
}
然后你可以使用你的对象轻松地遍历它们,存储它们随意使用它们。
我很快就把它搞砸了,所以它可能并不完美。
Linq查询以查找值
bool value = Convert.ToBool(customData.FirstOrDefault(x=> x.Key == "IsConsentGiven").Value);
此外,您还需要对NewtonSoft json库的引用。这是VS 2012中的nuget包
马丁
编辑:这是我的意思的完全工作版本,你可以通过使用索引找到不同的条目,但是,这可能只是我,我感到紧张,因为我永远不知道json内容是否会改变。< / p> 序列化对象给出意味着它应该应对json或其他数据的大多数变化,加上强类型的好处只是让它更容易阅读。
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LinqFun
{
class Program
{
static void Main(string[] args)
{
//Set Data
string jsonString = @"[
{
""Key"": ""RegistrationWrx"",
""Value"": ""Wrx45687"",
""Id"": 462,
},
{
""Key"": ""IsConsentGiven"",
""Value"": ""True"",
""Id"": 463,
}
]";
//Create a list of CustomData entries to look through.
List<CustomData> customData = JsonConvert.DeserializeObject<List<CustomData>>(jsonString);
//Create an object for the is consent given block of data
CustomData IsConsentGiven = customData.FirstOrDefault(x => x.Key == "IsConsentGiven");
//check the linq query resulted in an object
if (IsConsentGiven != null)
{
Console.WriteLine(IsConsentGiven.Value);
}
Console.ReadLine();
}
}
public class CustomData{
public string Key { get; set; }
public string Value { get; set; }
public int? ID { get; set; }
}
}
你可以直接提取IsConsentGiven的值,但是如果你不得不在try块中包含它以防数据丢失,我更喜欢自己查看它。 直接把它拉出来的linq虽然是:
bool value = Convert.ToBoolean(customData.FirstOrDefault(x => x.Key == "IsConsentGiven").Value);
答案 1 :(得分:0)
希望这会有所帮助,创建一个具有value属性的类然后执行下面的
public class Category
{
public string Value{ get; set; }
}
var categories = JsonConvert.DeserializeObject<List<Category>>(json)