I have a Javascript object which will consists of a non-cyclic object hierarchy with parameters and child objects. Some of these objects may hold binary data loaded from files or received via XHRs (not defined yet if Blob, ArrayBuffer or something else).
Normally I would use JSON.stringify() to serialize it as JSON but how can I then specify that binary data will be base64 encoded?
What binary data object (Blob, ArrayBuffer,...) would you recommend me then?
EDIT: Other data formats than plain JSON is not an option.
JSON.stringify
accepts a second argument with which you can define your own conversion for specific values: developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/… – Wittenberg