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.
|
Part of a website's JSON response had this (... added for context):
Is adding anonymous functions to JSON valid? I would expect each time you access 'time' to return a different value. |
|||||||||
|
|
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:
|
|||||||||||
|
|
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:
|
||||
|
|
|
JSON explicitly excludes functions because it isn't meant to be a JavaScript-only data structure (despite the JS in the name). |
|||
|
|
|
It is not standard as far as I know. A quick look at http://json.org/ confirms this. |
|||
|
|
|
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. |
|||||||
|
|
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? |
|||
|
|
|
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? |
|||||||
|