如何将空字符串转换为空字符串 json.net
我正在使用 json.net 序列化一个包含字符串的类,但是,当它转换为 json 时,字符串将转换为 null,有没有办法让 json.net 将 null 字符串转换为空字符串 ('')并且不为空?
这是我目前得到的
var client = {
"FirstName": null,
"LastName": null
}
,我想要这个:
var client = {
"FirstName": '',
"LastName": ''
}
I'm using json.net to serialize a class that has strings, however, when it is converted to json the strings are convert to null, is there a way I could make json.net convert null strings to emtpy strings ('') and not null?
Here is what I currently get
var client = {
"FirstName": null,
"LastName": null
}
and I want this:
var client = {
"FirstName": '',
"LastName": ''
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
如果
FirstName
为 null,则返回 ''。最好还是创建一个像这样的辅助函数:try:
This will return '' if
FirstName
is null. Better still create a helper function like this: