You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all, thank you very much for the library. I'm really enjoying using it in a 2D engine project.
I would like to know if you could or would like to help me with the following issue. I have a SAX that I use to convert a JSON string into an object. I could use the one from Duktape directly, but for other reasons, I want to use a different library.
What I've done works partially, but I'm not able to create the relationship of nested objects. As you can see below, I have an input JSON that goes through the SAX, and in JavaScript, when I do a JSON.stringify, I only get the last serialized object.
What could be the issue? I'm probably forgetting to push at some point, I've already tried several things.
First of all, thank you very much for the library. I'm really enjoying using it in a 2D engine project.
I would like to know if you could or would like to help me with the following issue. I have a SAX that I use to convert a JSON string into an object. I could use the one from Duktape directly, but for other reasons, I want to use a different library.
What I've done works partially, but I'm not able to create the relationship of nested objects. As you can see below, I have an input JSON that goes through the SAX, and in JavaScript, when I do a JSON.stringify, I only get the last serialized object.
What could be the issue? I'm probably forgetting to push at some point, I've already tried several things.
Thank you.
The SAX:
The input JSON:
The result:
The text was updated successfully, but these errors were encountered: