我在xamarin.forms应用程序中使用插件Newtonsoft.Json
来序列化和反序列化typr Form
的对象
public class Form
{
[JsonProperty("id")]
public int id { set; get; }
[JsonProperty("title")]
public string title { set; get; }
[JsonProperty("body")]
public string body { set; get; }
[JsonProperty("department_id")]
public string department_id { set; get; }
[JsonProperty("fields")]
public List<FormField> fields { set; get; }
}
public class FormField
{
[JsonProperty("id")]
public int id { set; get; }
[JsonProperty("title")]
public string label { set; get; }
[JsonProperty("inputtype")]
public string inputtype { set; get; }
[JsonProperty("key")]
public string key { set; get; }
[JsonProperty("item_order")]
public int order { set; get; }
[JsonProperty("required")]
public bool isRequired { set; get; }
[JsonProperty("enabled")]
public bool isEnabled { set; get; }
public CellCustom fieldObject { set; get;}
public FormField()
{
fieldObject = CreateInstance() as CellCustom;
}
private object CreateInstance()
{
return Activator.CreateInstance(Type.GetType("Hura.Models.Cells." + inputtype));
}
public Cell createCell()
{
return fieldObject.createCell();
}
}
这是反序列化代码
string str= @"{""id"": 17,""title"": ""testform"",""body"": ""null"",""department_id"": 5,""fields"": [{""id"": 28,""title"": ""null"",""inputtype"": ""text"",""key"": ""f1474532070512"",""item_order"": 1,""required"": true,""enabled"": true}]}";
Form tstfrm = JsonConvert.DeserializeObject<Form>(str);
MainPage = new FillForm(tstfrm);
但是当我运行此代码时,即使我没有任何名为&#34; type&#34;的字段,它也会给我错误System.ArgumentNullException: Value cannot be null. Parameter name: type
。在我的JSON对象中!
我的代码有什么问题,我该如何解决?
答案 0 :(得分:1)
您需要确保当前正在执行的程序集或mscorlib.dll中存在"Hura.Models.Cells." + inputtype
类型。如果没有,则必须指定程序集名称。 (见here。)
在您的示例代码中,请求的类型名称为Hura.Models.Cells.text
,它不存在,因此会向Activator.CreateInstance
的type参数返回null。
也许空检查就足够了,但这取决于你想如何应对这种情况。