as @Sushanth says, parse is definitely a good way to do this.
But usually using nested objects in Backbone Models is unsafe and not the best way to do this. When you change your response.info.name property and bind events to response.info , you will not receive notifications.
After several years of working with Backbone, I would like to tell you that analyzing your received models from the server to primitive objects is the best you can do.
If you want your models to return to the server just like them, you could override the toJSON function, which could convert it. Of course you need to implement these two ...: /
source share