Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

json · JSON JavaScript Object Notation

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 590
  • Category: Data Formats
  • Founded: Jul 19, 2005
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 409 - 438 of 1953   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
409 henrik hjelte
jagarenbrape... Send Email
Jun 13, 2006
4:37 pm
This is javascript code, not JSON. Keys should have surrounding quotes in JSON. {"user": {"errorFirstName":"", "errorLastName::"", "errorEmail&quot;:"The email...
410 Ashwin Prabhu
ashp_says_hi Send Email
Jun 13, 2006
6:56 pm
Hi Henrik and Martin, Thanks very much for your response. Without quotes its working for me. With quotes FireFox is throwing an error as 'invalidLabel&#39;, when...
411 Douglas Crockford
douglascrock... Send Email
Jun 14, 2006
4:02 am
... Why are you using eval?...
412 Ashwin Prabhu
ashp_says_hi Send Email
Jun 15, 2006
6:46 pm
Hi Doug, My understanding of JSON was that you need to form a Text in such way that, when we create a JSON object using 'eval', then we can traverse its...
413 Matthew Morley
mpcmtechnolo... Send Email
Jun 15, 2006
7:05 pm
Perhaps he is asking why you aren't using: http://json.org/json.js ... string.parseJSON() This method parses a JSON text to produce an object or array. It will...
414 Michal Migurski
michal_migurski Send Email
Jun 15, 2006
7:10 pm
... It would be helpful to have some more context; the first snippet you sent was just plain old Javascript, and didn't show how you're using eval(). -mike. ...
415 Todd Kingham
toddkingham Send Email
Jun 15, 2006
7:14 pm
Ashwin, It sounds like either your eval() statement is incorrect or your JSON string is malformatted. Below is a simple example of some JSON written in...
416 keelypavan Send Email Jun 15, 2006
7:20 pm
Ashwin, ... You directly have Javascript statement for object and there was no need for 'eval'ing it. That was Doug's point. Pavan Keely...
417 Ashwin Prabhu
ashp_says_hi Send Email
Jun 16, 2006
3:56 pm
Hey Guys, Thanks very much for all the clarifications. i think, i know what i was doing wrong. As for parseJSON, yup i will using that. Thanks again! -...
418 Martin Cooper
mfncooper Send Email
Jun 17, 2006
5:46 pm
The link to the ActionScript 3 JSON implementation on the json.org homepage is broken. Does anyone know where I can find the code? TIA. -- Martin Cooper ...
419 Martin Cooper
mfncooper Send Email
Jun 17, 2006
10:53 pm
Answering my own question, I found it here: http://labs.adobe.com/wiki/index.php/ActionScript_3:resources:apis:libraries#corelib It would be nice if the JSON...
420 Greg Patnude
gregpatnude Send Email
Jun 20, 2006
3:55 pm
I have identified a need to merge/mangle several discrete JSON objects into a single JSON object in Java. Has anyone ever developed a method to merge two...
421 Fang Yidong
fangyidong Send Email
Jun 21, 2006
12:58 am
In org.json.simple, a JSONArray is a List and a JSONObject is a Map,so you can use List.addAll(JSONArray) or Map.addAll(JSONObject) to merge them. ... -- JSON:...
422 geoffreyk00 Send Email Jun 24, 2006
2:48 pm
I have been looking at JSON, and have seen in a few places where the eval statement is written x = eval('(&#39; + var + ')'); what is the purpose of the '(' and...
423 Douglas Crockford
douglascrock... Send Email
Jun 25, 2006
2:08 pm
... In Javascript there is a potential syntactic ambiguity in which {...} can be interpreted as either a block statement or an object literal. The parens...
424 geoffreyk00 Send Email Jun 25, 2006
3:27 pm
... the ... OK. Thanks Could you give a simple example where this would fail? Would help to understand better...
425 Douglas Crockford
douglascrock... Send Email
Jun 25, 2006
10:02 pm
XSLTJSON is a XSLT 2.0 stylesheet to transform arbitrary XML to JSON. http://www.bramstein.nl/xsltjson/...
426 Cheenu
cheenu321 Send Email
Jun 26, 2006
3:02 pm
Is there any XSD created for JSON structure? The idea/purpose represent JSON within a full blown heavy weight XML XSD. Thanks Cheenu [Non-text portions of this...
427 Jason Levitt
sashimikid Send Email
Jun 26, 2006
10:53 pm
Is that different than this? http://www.kokogiak.com/gedankengang/2006/05/consuming-amazons-web-api-directly.html J ... -- Jason Levitt | Evangelista Técnico...
428 sco1326 Send Email Jun 27, 2006
4:04 am
I need to create a JSON object using the Java json.org API in the format of the following example: {"test":{"97523&quot;:{"attrs":{},"name":{"rec";:41523}}, ...
429 Fang Yidong
fangyidong Send Email
Jun 27, 2006
4:44 am
use JSONArray: {"test":["97523&quot;:{"attrs":{},"name":{"rec";:41523}}, "654712":{"attrs&quot;:{},"name":{"rec";:106512}},"3895608&quot;:{"attrs":{},"name":{"rec";:238908}}], ...
430 Bakul L Patel
bakullpatel Send Email
Jun 27, 2006
7:17 am
Well, if you dig API little, you would come to know that it uses HashMap that does not keep that element in any order. May be you can use LinkedHashMap for...
431 Alan Lewis
alanlewis0 Send Email
Jun 29, 2006
9:02 am
I just uploaded my XSLT 1.0 stylesheet that converts any XML data to JSON. Check out the XML 2 JSON project homepage <https://json-xslt.codebase.ebay.com/>...
432 chris_nappin Send Email Jun 30, 2006
2:14 pm
Hi, I'm using JSON via JSRS (a kind of simpler pre-cursor to AJAX) with a J2EE application. We have a complex XSLT-based user interface and I'm using AJAX to...
433 chris_nappin Send Email Jun 30, 2006
3:18 pm
Sorry, the JavaScript was not quite right and didn't format very well, here it is again: function updateScreenCallback(result) { try { var result = eval('(&#39; +...
434 Scott Chapman
chappie_mischko Send Email
Jun 30, 2006
5:16 pm
I'm wondering if there's any examples of using json to submit a form using AJAX. I need a JS library that will convert a form in to an associative array so I ...
435 Scott Chapman
chappie_mischko Send Email
Jun 30, 2006
7:59 pm
Here's a strange situation to me. I'm new to Javascript and so I expect I'm missing something here. // Using GoogleMaps API to return the bounds of a map: var...
436 todd_kingham Send Email Jun 30, 2006
11:21 pm
Hello all, I've searched for an existing discussion on this subject and couldn't find one, so I apologize if I'm duplicating an existing thread. I'm quite...
437 Martin Cooper
mfncooper Send Email
Jun 30, 2006
11:36 pm
... A commercial toolkit I've used in the past uses the second form below. That works well because you can take one record and manipulate or use it without ...
438 chris_nappin Send Email Jul 3, 2006
12:52 pm
I've managed to determine that there are no new lines, form feeds or carriage return characters in the JSON text, nor any un-escaped double quotes. However...
Messages 409 - 438 of 1953   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help