如何从JSON对象获取数据?从日期变量到图表的选择

时间:2018-12-26 10:36:18

标签: c# json

我有3个变量的JSON对象:DateTime,entry_id,field1。

{"created_at":"2018-11-14T18:38:13Z","entry_id":157,"field1":"294"}

我想要2个具有DataTime值的列表框。第一个列表框是“起始日期”,第二个列表框是“起始日期”。当用户从两个列表中选择值时,变量field1将显示在图形中。

我想从json中获取数据并将其设置为图表,但我想从列表框中选择日期

我知道如何从json到图表设置一个值,但是我如何选择从到的日期?

using (var webClient = new WebClient()){
        string rawJson = webClient.DownloadString("https://api.thingspeak.com/channels/618749/feeds.json?results=");

        RootObject dataColletion = JsonConvert.DeserializeObject<RootObject>(rawJson);

        Console.WriteLine(dataColletion.feeds.Count);

        AllData = dataColletion.feeds;
    }

    private static List<Feed> allDane;

    public static List<Feed> AllData
    {
        get{ return allDane; }

        set{ allDane = value; }
    }

    public static List<Feed> GetDane()
    {
        return AllData;
    }

0 个答案:

没有答案