在JSON中返回空值的首选方法是什么?对原语有不同的偏好吗?
例如,如果我在服务器上的对象有一个名为“myCount”的整数,没有值,最正确的JSON值将是:
{}
or
{
"myCount": null
}
or
{
"myCount": 0
}
同样的问题字符串-如果我有一个空字符串“myString”在服务器上,是最好的JSON:
{}
or
{
"myString": null
}
or
{
"myString": ""
}
或者(上帝帮助我)
{
"myString": "null"
}
我喜欢在JSON中将集合表示为空集合http://jtechies.blogspot.nl/2012/07/item-43-return-empty-arrays-or.html的约定
一个空数组将被表示:
{
"myArray": []
}
编辑总结
“个人偏好”的论点似乎是现实的,但目光短浅,作为一个社区,我们将消费越来越多的不同的服务/资源。JSON结构的约定将有助于规范上述服务的使用和重用。至于建立标准,我建议采用杰克逊的大部分约定,只有少数例外:
对象优先于原语。
空集合优先于空集合。
没有值的对象表示为null。
原语返回它们的值。
如果返回的JSON对象大部分为空值,则可能需要将其重构为多个服务。
{
"value1": null,
"value2": null,
"text1": null,
"text2": "hello",
"intValue": 0, //use primitive only if you are absolutely sure the answer is 0
"myList": [],
"myEmptyList": null, //NOT BEST PRACTICE - return [] instead
"boolean1": null, //use primitive only if you are absolutely sure the answer is true/false
"littleboolean": false
}
上面的JSON是从下面的Java类生成的。
package jackson;
import java.util.ArrayList;
import java.util.List;
import com.fasterxml.jackson.databind.ObjectMapper;
public class JacksonApp {
public static class Data {
public Integer value1;
public Integer value2;
public String text1;
public String text2 = "hello";
public int intValue;
public List<Object> myList = new ArrayList<Object>();
public List<Object> myEmptyList;
public Boolean boolean1;
public boolean littleboolean;
}
public static void main(String[] args) throws Exception {
ObjectMapper mapper = new ObjectMapper();
System.out.println(mapper.writeValueAsString(new Data()));
}
}
Maven的依赖:
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.3.0</version>
</dependency>
让我们来评估一下每一个的解析:
http://jsfiddle.net/brandonscript/Y2dGv/
var json1 = '{}';
var json2 = '{"myCount": null}';
var json3 = '{"myCount": 0}';
var json4 = '{"myString": ""}';
var json5 = '{"myString": "null"}';
var json6 = '{"myArray": []}';
console.log(JSON.parse(json1)); // {}
console.log(JSON.parse(json2)); // {myCount: null}
console.log(JSON.parse(json3)); // {myCount: 0}
console.log(JSON.parse(json4)); // {myString: ""}
console.log(JSON.parse(json5)); // {myString: "null"}
console.log(JSON.parse(json6)); // {myArray: []}
这里的tl;dr:
json2变量中的片段是JSON规范指示应该表示null的方式。但一如既往,这取决于你在做什么——有时“正确”的方法并不总是适用于你的情况。运用你的判断力,做出明智的决定。
JSON1 {}
这将返回一个空对象。这里没有数据,它只会告诉您您正在寻找的任何键(无论是myCount还是其他键)是未定义的类型。
JSON2 {"myCount": null}
在本例中,实际上定义了myCount,尽管它的值为null。这与“非未定义且非空”不同,如果您正在测试一个条件或另一个条件,这可能会成功,而JSON1将失败。
这是JSON规范中表示null的最终方式。
孙3(“我数”:0)
在本例中,myCount为0。它不等于null,也不等于false。如果条件语句计算myCount > 0,那么这可能是值得的。此外,如果基于这里的值运行计算,0可能有用。然而,如果你试图测试为空,这实际上是行不通的。
JSON4 {“myString”: “”}
在本例中,您将得到一个空字符串。同样,与JSON2一样,它是有定义的,但它是空的。你可以测试if (obj。myString == ""),但你不能测试null或undefined。
JSON5 {"myString": "null"}
这可能会给你带来麻烦,因为你将字符串值设置为null;在本例中,是obj。myString == "null",但它不是== null。
JSON6 {“myArray”: []}
这将告诉你你的数组myArray存在,但它是空的。如果您试图对myArray执行计数或求值,这是非常有用的。例如,假设您想要计算用户发布的照片数量—您可以使用myArray。长度,它将返回0:已定义,但没有照片张贴。
According to the JSON spec, the outermost container does not have to be a dictionary (or 'object') as implied in most of the comments above. It can also be a list or a bare value (i.e. string, number, boolean or null). If you want to represent a null value in JSON, the entire JSON string (excluding the quotes containing the JSON string) is simply null. No braces, no brackets, no quotes. You could specify a dictionary containing a key with a null value ({"key1":null}), or a list with a null value ([null]), but these are not null values themselves - they are proper dictionaries and lists. Similarly, an empty dictionary ({}) or an empty list ([]) are perfectly fine, but aren't null either.
在Python中:
>>> print json.loads('{"key1":null}')
{u'key1': None}
>>> print json.loads('[null]')
[None]
>>> print json.loads('[]')
[]
>>> print json.loads('{}')
{}
>>> print json.loads('null')
None