【发布时间】:2017-08-14 20:19:25
【问题描述】:
我正在尝试使用 Newtonsoft.json 将 json 字符串转换为对象,但在进行以下转换时遇到了一些问题。我想知道是否有人可以解释这一点。谢谢。
AddFaceResponse ir = JsonConvert.DeserializeObject<AddFaceResponse>(responseContentStr);
这是 json 字符串 responseContentStr
[{
"faceId": "1fe48282-a3b0-47d1-8fa8-67c4fac3d984",
"faceRectangle": {
"top": 80,
"left": 50,
"width": 147,
"height": 147
}
}]
这是我的模型对象。
public class AddFaceResponse
{
public class Face
{
public class FaceRectangle
{
public int top, left, width, height;
public FaceRectangle(int t, int l, int w, int h)
{
top = t;
left = l;
width = w;
height = h;
}
}
public string faceId;
public FaceRectangle faceRectangle;
public Face(string id, FaceRectangle fac)
{
faceId = id;
faceRectangle = fac;
}
}
Face[] faces;
public AddFaceResponse(Face[] f)
{
faces = f;
}
}
这是我从 Visual Studio 得到的错误。
Newtonsoft.Json.JsonSerializationException:无法将当前 JSON 数组(例如 [1,2,3])反序列化为类型 'App2.AddFaceResponse' 因为该类型需要 JSON 对象(例如 {"name":"value"}) 正确反序列化
【问题讨论】:
-
IdentifyResponse类的定义在哪里。 -
抱歉,我复制了错误的代码行。我打算将字符串转换为 AddFaceResponse。我只是更新它。 @TravisJ
标签: c# json serialization json.net