Can JSON numbers be quoted?

╄→гoц情女王★ 提交于 2019-11-27 04:57:23

In JSON, 6 is the number six. "6" is a string containing the digit 6. So the answer to the question "Can json numbers be quoted?" is basically "no," because if you put them in quotes, they're not numbers anymore.

But, should the parsers accept both "attr" : 6 and attr : "6"?

The second example is invalid, because attr must be in quotes, e.g.:

{"attr": "6"}

...is valid, and defines an object with a property called attr with the string value "6", whereas:

{"attr": 6}

...is valid, and defines an object with a property called attr with the number value 6, and finally:

{attr: 6}

...and

{attr: "6"}

...are both invalid JSON because property names must be in double quotes.

If MyParser has a method getInt to get a number given the key, should MyParser.getInt("attr") return 6 in both the cases or throw an exception in the latter case?

That's a design decision for the person providing the parser, basically the choice between getInt being strict (throwing an exception if you try it on "attr": "6") or loose (coercing "6" to 6 and returning that). JavaScript is usually loose, and so there could be an argument for being loose; conversely, the fact that JavaScript is loose sometimes causes trouble, which could be an argument for being strict.

scubaFun

That will depend of the language that you use to get the integer, because if the programming language does not provide implicit conversion from string to int, you can have problems.

You should not to worry too much, since modern programming language nowadays can implicitly convert a string to a number without additional code. Something you should take into consideration is, when using programming languages like JavaScript, when you use == and === when comparing values, === takes into consideration the value's type while == not, so 6 === "6" will return false, while 6 == "6" will return true.

Answering your question, it will not throw an exception if you are using a programming language that provides implicit conversion from string to int.

You can quote the number. Both are valid ("attr" : 6 and "attr" : "6") The only thing need to keep in mind that while extracting the value you need to use GetInt() in first case and GetString() in second case and then convert that string to integer.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!