当我将 XML 转换为 JSON 并且 XML 字段为 null 时,我得到一些东西,我在 JSON 中返回了一个 null,这是预期的 JSON 输出吗?我将它用于 Web 服务。
我可以关闭 null ,以便它显示空白/空。
XML
<GetItemRequest>
<ApplicationCrediential>
<ConsumerKey></ConsumerKey>
<ConsumerSecret></ConsumerSecret>
</ApplicationCrediential>
</GetItemRequest>
JSON
{
"GetItemRequest": {
"ApplicationCrediential": {
"ConsumerKey": null,
"ConsumerSecret": null
}
}
}