Cannot deserialize the current JSON object (e.g. {quot;namequot;:quot;valuequot;}) into type #39;System.Collections.Generic.List`1(无法将当前 JSON 对象(例如 {“name:“value})反序列化为“System.Collections.Generic.List类型)
问题描述
使用系统;使用 System.Collections.Generic;使用 System.Linq;使用 System.Text;使用脸书;使用 Newtonsoft.Json;命名空间脸书{课堂节目{静态无效主要(字符串 [] 参数){var client = new FacebookClient(acc_ess);动态结果 = client.Get("fql", new { q = "select target_id,target_type from connection where source_id = me()"});字符串 jsonstring = JsonConvert.SerializeObject(result);//jsonstring {"data":[{"target_id":9503123,"target_type":"user"}]}列出<根对象>datalist = JsonConvert.DeserializeObject<List<RootObject>>(jsonstring);}公共类基准{公共 Int64 target_id { 获取;放;}公共字符串目标类型 { 获取;放;}}公共类 RootObject{公共列表<基准>数据{得到;放;}}}}
<块引用>
无法反序列化当前 JSON 对象(例如 {"name":"value"})输入类型'System.Collections.Generic.List`1[facebook.Program+RootObject]'因为该类型需要一个 JSON 数组(例如 [1,2,3])来反序列化正确.要修复此错误,请将 JSON 更改为 JSON 数组(例如 [1,2,3])或更改反序列化类型,使其成为正常的.NET 类型(例如,不是像整数这样的原始类型,也不是集合类型如数组或列表)可以是
我看了其他帖子.
我的 json 看起来像这样:
{"data":[{"target_id":9503123,"target_type":"user"}]}
为了明确,除了@SLaks 的回答,这意味着你需要改变这一行:
Listdatalist = JsonConvert.DeserializeObject<List<RootObject>>(jsonstring);
到这样的事情:
RootObject datalist = JsonConvert.DeserializeObject(jsonstring);
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Facebook;
using Newtonsoft.Json;
namespace facebook
{
class Program
{
static void Main(string[] args)
{
var client = new FacebookClient(acc_ess);
dynamic result = client.Get("fql", new { q = "select target_id,target_type from connection where source_id = me()"});
string jsonstring = JsonConvert.SerializeObject(result);
//jsonstring {"data":[{"target_id":9503123,"target_type":"user"}]}
List<RootObject> datalist = JsonConvert.DeserializeObject<List<RootObject>>(jsonstring);
}
public class Datum
{
public Int64 target_id { get; set; }
public string target_type { get; set; }
}
public class RootObject
{
public List<Datum> data { get; set; }
}
}
}
Cannot deserialize the current JSON object (e.g. {"name":"value"}) into type 'System.Collections.Generic.List`1[facebook.Program+RootObject]' because the type requires a JSON array (e.g. [1,2,3]) to deserialize correctly. To fix this error either change the JSON to a JSON array (e.g. [1,2,3]) or change the deserialized type so that it is a normal .NET type (e.g. not a primitive type like integer, not a collection type like an array or List) that can be
I looked at other posts.
My json looks like this:
{"data":[{"target_id":9503123,"target_type":"user"}]}
To make it clear, in addition to @SLaks' answer, that meant you need to change this line :
List<RootObject> datalist = JsonConvert.DeserializeObject<List<RootObject>>(jsonstring);
to something like this :
RootObject datalist = JsonConvert.DeserializeObject<RootObject>(jsonstring);
这篇关于无法将当前 JSON 对象(例如 {“name":“value"})反序列化为“System.Collections.Generic.List"类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:无法将当前 JSON 对象(例如 {“name":“value"})反序列化为“System.Collections.Generic.List"类型
基础教程推荐
- rabbitmq 的 REST API 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- c# Math.Sqrt 实现 2022-01-01