0

I have a strange issue when I use Parse .save method. It's pretty simple when I save Objects that work well. When I save Array of strings that work too. But when I try to save Array of Object like: [{"pos": 10101, "id": 2312}, {...}, {...}]

The save work but when I check my database I have a Array with empty objects.

Someone already had the problem before?

Thank's for your help !

1 Answer 1

0

You can't save dictionaries to Parse. You'll have to structure your data differently. You can save an array of array's but not [{"blue": "sky"}] or ["blue" : "sky"].

1
  • Thank's for the answer.
    – avallete
    Commented Sep 26, 2015 at 16:18

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