Hello. Ordinarily I wouldn't ask others to debug a problem I'm having with MY code, but I'm stuck. Being a total newbie to JSON, I'm afraid I don't have enough...
Hi Ryan, When you eval a json string, enclose that string in between "(" and ")". So, to correct your example, the json part of the eval statement would be: ...
Hi. I'm trying to use json.parse on server-side javascript under IIS. This gives errors or returns false with "perfectly good" json strings. The process is to...
... Ok. I build an object like this on the client side just for testing: function fazJSON() { var mObj = new Object; mObj.Time = new Date().getTime(); ...
I have added a JSON text parser, called JsonTextReader, that provides non-cached, forward-only access to JSON data. JsonTextReader [1] can be found in the...
I don’t see where you are calling fazJSON to stringify the object, but I’ll assume that objJSN is the stringified version of an object. I had to wrap the...
JSON is primary a set of encoding rules. A JSON encoder is required to only emit stuff which is strict JSON. The only rule for decoders is that they accept...
Hello, I use to have a lot of application build with ajax, to learn more about JSON and also implement something easier in one of this applications. The BIG...
Hi, What's the charset ? It seems like you created the file (statis JSON) file with some local charset. Can you send me that static file ? Pavan Keely Rafael...
Mark, Your assumption is correct. I'll try encodeURIComponent before using parse and see what happens. Thanks for your help! Duarte ... but I'll ... to get ......
when testing the JSON.stringify function, i noticed that it does not seem to behave correctly in safari. The issue is with Objects. It seems to arise from the...
Just curious -- what testing has been done of the various libraries and tools WRT internationalisation? I.e., has it been confirmed that i18n works in JSON,...
Deos JSON Request allow a true POST today? I reviewed your docs, and there is some great information here, but you do not discuss how to do a POST without...
Now that this comes up, a question needs to be asked. When Unicode chars are specified, is there an inherent encoding scheme JSON wide? utf-8? utf-16? another...
I think UTF-8 is just a transformation format,like GBK and so on. In the 'internal' of both side (client / server),unicode is encoded in UCS-2 or UCS-4. I...
... JSON can be used with languages that use 8-bit chars, 16-bit chars, or 32-bit chars. Applications use Unicode in the most convenient size, which is...
I'm using the GBK version of Yahoo! mail.I forgot to change 'Re:' in chinese (3 unicode characters) into english.Maybe it's why the subject looks like this. ...
I was just taking a look at the json output from Flickr, and noticed that they don't quote any of their keys. As I understand it, that's incorrect - at least...
... No, they should definitely quote their keys. Parsers can be lenient in what they accept, but it's lame to produce invalid output like this, especially when...