循环多个JSON对象以获得多个值

本文关键字:对象 JSON 循环 | 更新日期: 2023-09-27 17:50:40

使用JSON。. Net (http://www.newtonsoft.com/json/help/html/LINQtoJSON.htm)和以下c#代码:

@using Newtonsoft.Json;
@using Newtonsoft.Json.Linq;
@{
    var url = "https://graph.facebook.com/v2.2/me&fields=id%2Cname%2Cposts.limit(3)&format=json&method=get&pretty=0&suppress_http_code=1";
    var syncClient = new WebClient();
    var content = syncClient.DownloadString(url);
    JObject facebook = JObject.Parse(content);
    //To-Do: Loop each JSON object to get message, image, & link values.
}

如何循环每个JSON对象来获取消息,图像,&链接值给出如下JSON格式(http://www.codeshare.io/EvIdN)。

循环多个JSON对象以获得多个值

你可以直接使用indexer:

foreach (var element in facebook["posts"]["data"])
{
    message = element["message"];
    image = element["image"];
    //etc
}

这里是一个例子,顺便说一下,你的JSON是无效的…