Good evening. A question. How to make chrome so that when a json object or objects come from the backend, you can see what properties and fields it has in the console. I saw in people you can simply deploy the object, and there will be its fields, etc. I only have written that the object came, without specifics. On the backend spring, on the front end angular. Thank you in advance.
userService.getUser().success(function (data) { console.log("User : " + data); $scope.user = data; });