来自这个Json文件;
"a": "a",
"b": "b",
"c": "c",
"labels": "[Series A, Series B]"
我使用Newtonsoft.Json进行desirialize:
我的班级c#:
public string a { get; set; }
public string b { get; set; }
public string c { get; set; }
[JsonConverter(typeof(string []))]
public string [] labels { get; set; }
在另一堂课:
dummyObject = (DummyObject)JsonConvert.DeserializeObject(JasonFile.ToString(), typeof(DummyObject));
我想在Javascript中获取这个字符串数组:
labels = ['Series A', 'Series B'];
但是当我尝试绝望时,我有这个错误:
Error creating 'System.String[]'.
此代码中的错误在哪里??
答案 0 :(得分:3)
json文件不正确
{
结束。尝试使用此文件
}
找到更多详情