作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
例如,我的 class_ 有字符串属性
[DataMember]
[JsonProperty(PropertyName = "email")]
[StringLength(40, ErrorMessage = "The Mobile value cannot exceed 40 characters. ")]
public string Email { get; set; }
由于某种原因,在 Convert.Deserialize 过程中,我需要在此属性中包含空字符串,而不是 null,以防 JSON 对象中未设置此值。怎么做?
最佳答案
您可以使用DefaultValue属性。
将其装饰为
[DataMember]
[JsonProperty(PropertyName = "email", DefaultValueHandling = DefaultValueHandling.Populate)]
[StringLength(40, ErrorMessage = "The Mobile value cannot exceed 40 characters. ")]
[DefaultValue("")]
public string Email { get; set; }
关于asp.net - Json.Net 如何将 null 反序列化为空字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15136041/
我是一名优秀的程序员,十分优秀!