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

I wonder how does Dart handle JSON? More specifically:

  1. Can I access item in a JSON object and when, how?
  2. Can I convert Darts data structures like Set and Maps into JSON?
  3. Can I create a new JSON, only by calling JSON.parse?
  4. How can I add new items into a JSON?
share|improve this question

2 Answers

up vote 10 down vote accepted

You might find this post of mine interesting: http://www.grobmeier.de/dart-creating-a-dynamic-list-with-dart-php-and-json-20112011.html

You need to use this library:

#import("dart:json");

Here is the according spec: http://api.dartlang.org/json/JSON.html

To your questions:

  1. You can use: List result = JSON.parse( jsonData );
  2. With stringify you can turn for example a Map to JSON
  3. I am sorry, not sure on this question. You could do: JSON.parse('{key:"value"}')); or something like that
  4. You probably need to create a Map out of your JSON with parse, then add your item, and then call stringify
share|improve this answer

Like Christian, there's also a similar post on my dartwatch blog which might be useful.

share|improve this answer
1  
Ah yes, usually I add a reference to this post. Thanks for reminding me. – Christian Jan 24 '12 at 9:16
1  
Maybe is this an updated link? dartlang.org/articles/json-web-service – Eduardo Copat Dec 10 '12 at 12:35

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.