我有一个MVC应用程序,该应用程序将我的模型序列化到JSON模式(使用Newtonsoft JSON.NET架构(。问题是我数组中的项目具有["string", "null"]
型,但我需要的只是"string"
。这是我班级的代码:
public class Form
{
[Required()]
public string[] someStrings { get; set; }
}
这是JSON.NET模式制造的架构:
"someStrings": {
"type": "array",
"items": {
"type": [
"string",
"null"
]
}
}
我期待这个:
"someStrings": {
"type": "array",
"items": {
"type": "string"
}
}
请帮助我摆脱"无效"。
生成架构时尝试将DefaultRequired
设置为DisallowNull
:
JSchemaGenerator generator = new JSchemaGenerator()
{
DefaultRequired = Required.DisallowNull
};
JSchema schema = generator.Generate(typeof(Form));
schema.ToString();
输出:
{
"type": "object",
"properties": {
"someStrings": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
您可以尝试以下方法:
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
尝试以下::
public class Employee
{
public string Name { get; set; }
public int Age { get; set; }
public decimal? Salary { get; set; }
}
Employee employee= new Employee
{
Name = "Heisenberg",
Age = 44
};
string jsonWithNullValues = JsonConvert.SerializeObject(person, Formatting.Indented);
输出:使用null
// {
// "Name": "Heisenberg",
// "Age": 44,
// "Salary": null
// }
string jsonWithOutNullValues = JsonConvert.SerializeObject(employee, Formatting.Indented, new JsonSerializerSettings
{
NullValueHandling = NullValueHandling.Ignore
});
输出:没有null
// {
// "Name": "Heisenberg",
// "Age": 44
// }