Skip to content Skip to sidebar Skip to footer

Saving Javascript Object That Has An Array Of Parse.files Causes "converting Circular Structure To Json" Error

I'm running into a problem where parse.com doesn't like it when I try to upload an array of parse files to parse. I currently have an array (arr) that is filled with base64 string

Solution 1:

Final Update: Good news! A fix has been made and will be released in the next Javascript SDK release 1.6.0.

BugMe

Solution 2:

Before saving the array, I converted each Parse.File into a custom object containing the same attributes as the file, including __type.

var convertedFiles = [];
_.each(files, function (file) {
    vardata = { __type = 'File', name: file.name, url: file.url() };
    convertedFiles.push(data);
});
parseObj.set('files', convertedFiles);
parseObj.save();

While a client fetches these converted objects, they interpret each of them as a Parse.File.

Post a Comment for "Saving Javascript Object That Has An Array Of Parse.files Causes "converting Circular Structure To Json" Error"