Skip to content Skip to sidebar Skip to footer

How To Use Parse.object Fromjson?

I checked the docs: http://parse.com/docs/js/api/classes/Parse.Object.html#methods_fromJSON And I did this: Parse.Object.fromJSON(this.document), but I get: Uncaught Error: Cannot

Solution 1:

As the error message says, you're missing a className (in your JSON) that tells it what kind of Parse object it is.


Post a Comment for "How To Use Parse.object Fromjson?"