Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Part of a website's JSON response had this (... added for context):

{..., now:function(){return(new Date).getTime()}, ...}

Is adding anonymous functions to JSON valid? I would expect each time you access 'time' to return a different value.

share|improve this question
Did the JSON parse successfully by the browser? If so then yes it is valid (in that respect). – harschware Jan 4 '10 at 19:36
4  
@harschware - that is true only as JSON relates to javascript. As a language independent data serialization format it is false and is a problematic road to walk down. – jsoverson Jan 4 '10 at 19:40
@jsoverson - I agree. See my answer below. – harschware Jan 4 '10 at 19:46

7 Answers

up vote 28 down vote accepted

JSON is purely meant to be a data description language. Per http://www.json.org, it is a "lightweight data-interchange format." - not a programming language.

Per http://en.wikipedia.org/wiki/JSON, the "basic types" supported are:

  • Number (integer, real, or floating point)
  • String (double-quoted Unicode with backslash escaping)
  • Boolean (true and false)
  • Array (an ordered sequence of values, comma-separated and enclosed in square brackets)
  • Object (collection of key:value pairs, comma-separated and enclosed in curly braces)
  • null
share|improve this answer
Is [], {} equal to null? I know nothing is comparable to null, including null, but is an empty set evaluated as a null value? – Dr. Zim Oct 30 '10 at 21:06
2  
@Dr. Zim, no and to compare things to null what i do is this a==null?1:a.toString()=="" What this does is it says if a=null then it returns 1/true, if it is "" meaning empty string you also get 1/true.. if it is not null or "" then it will return 0/false, you can replicate this more to work with [] and {} simply just be adding ?1:a==[]?1:a.toString()=={}.toString(); to my prev snippet. so maybe this function will help you. isnull=(function(a){return (a==null?1:a.toString()==""?1:a==[]?1:a.toString()=={}.toString())?true:false}) I would use ?1:0 instead of ?true:false but (true/false) – JamesM-SiteGen Jan 4 '11 at 6:05
is correct for the javascript function standard – JamesM-SiteGen Jan 4 '11 at 6:05
At the same time, functions are data too. – jeromeyers Mar 1 '12 at 18:55

The problem is that JSON as a data definition language evolved out of JSON as a JavaScript Object Notation. Since Javascript supports eval on JSON, it is legitimate to put JSON code inside JSON (in that use-case). If you're using JSON to pass data remotely, then I would say it is bad practice to put methods in the JSON because you may not have modeled your client-server interaction well. And, further, when wishing to use JSON as a data description language I would say you could get yourself into trouble by embedding methods because some JSON parsers were written with only data description in mind and may not support method definitions in the structure.

Wikipedia JSON entry makes a good case for not including methods in JSON, citing security concerns:

Unless you absolutely trust the source of the text, and you have a need to parse and accept text that is not strictly JSON compliant, you should avoid eval() and use JSON.parse() or another JSON specific parser instead. A JSON parser will recognize only JSON text and will reject other text, which could contain malevolent JavaScript. In browsers that provide native JSON support, JSON parsers are also much faster than eval. It is expected that native JSON support will be included in the next ECMAScript standard.

share|improve this answer

JSON explicitly excludes functions because it isn't meant to be a JavaScript-only data structure (despite the JS in the name).

share|improve this answer

It is not standard as far as I know. A quick look at http://json.org/ confirms this.

share|improve this answer

Nope, definitely not.

If you use a decent JSON serializer, it won't let you serialize a function like that. It's a valid OBJECT, but not valid JSON. Whatever that website's intent, it's not sending valid JSON.

share|improve this answer
1  
I use JSON-Lib and consider it to be a great serializer. From the [usage page](json-lib.sourceforge.net/usage.html) you can see it will serialize functions just fine – harschware Jan 4 '10 at 21:54
Interesting...I've never seen that before. It's definitely not to spec (json.org explicitly states that JSON is language independent, which function definitions are not), but interesting nonetheless. – jvenema Jan 5 '10 at 2:30

I would also like to know if there is any other reason not to put functions in JSON. It is not "valid JSON" in the sense of a data definition, but I see no reason to neuter my own JSON just because there was a standard based on it. I use functions in remote JSON requests because, to me, it is an organized, modular way of delivering data with it's associated methods. In the event that I must deal with a 3rd party server, I'll standardize. Is there any technical or security reason not to do this if it validates on all browsers and if the server authenticates each JSON call?

share|improve this answer

Only as a callback, I believe. Most server-side APIs offer support for specifying the callback function in the URL. http://developer.yahoo.com/common/json.html#callbackparam

But not as a value, or within the data.

What's with the downvotes?

share|improve this answer
2  
I didn't downvote, but I would wager it is because your answer is not relevant to the question. The callback you are referring to is a way to automatically execute a local function with the remote JSON as its parameter, the question is referring to whether or not it is OK to treat JSON as an actual javascript object with respect to embedded methods. – jsoverson Jan 4 '10 at 19:37
Yeah, I suppose more detail on why any other use of functions is prohibited would have been a good idea. – Computer Linguist Jan 4 '10 at 20:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.