I need to render a json object that is the output of a webapi call on a component.
The problem is that this response has not a fixed structure, it can change depending on the webapi execution.
Sometimes it can be a simple array, other time an array of object etc...
How can I render it without knowing the output structure ?
For who comes from PHP development, I need like something like print_r function...
Thanks Regards