如何将空字符串转换为空字符串 json.net

发布于 2024-10-22 03:30:20 字数 297 浏览 2 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

把回忆走一遍 2024-10-29 03:30:20

尝试:

client.FirstName||''

如果 FirstName 为 null,则返回 ''。最好还是创建一个像这样的辅助函数:

function null2empty(a){
    return a||'';//You might want to check for strings only before returning
}

try:

client.FirstName||''

This will return '' if FirstName is null. Better still create a helper function like this:

function null2empty(a){
    return a||'';//You might want to check for strings only before returning
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文