In my Angular app, I've setup "project" as a $resource. In my controller, I ask the server for the data over a GET request immediately when the page loads. I can edit the information in my browser using Angular's two-way data binding, and then I can save the data back to the server via a POST request, like this:
(edited/simplified for brevity)
function ProjectCtrl($scope, $routeParams, Project) {
$scope.project = Project.get({id: $routeParams.projectId},
function(data) { //Successfully received data },
function(data) { //Failed to receive data },
);
$scope.saveProject = function() {
$scope.project.save();
};
}
My Node server correctly receives the data, processes it and makes some changes, saves it to my database, and then responds with the newly updated "project" object via JSON. Angular does not display the new object until I refresh the page. Is there any way to make it display the new data? I'm assuming there's a more automatic Angular way to do this than to manually call another GET request after $scope.project.save();
save, what do you get asarguments(e.g.:$scope.project.save(function() { console.log(arguments); });)? (My hope is that the first argument will be data from the server, but I'm not positive.) – Brandon Tilley Nov 26 '12 at 8:06({0:{__v:11, _id:"50b18fb934d3488cb888163f", otherData:""}}), 1:(function (c){ "use strict"; a||(a=Nb(b));return c?a[E(c)]||null:a})})So should I set$scope.projectequal toarguments[0]or what would be the best way to go about it? – Wind Up Toy Nov 26 '12 at 15:38$scope.project = Project(data)(just usedataas the first parameter to that function). – Brandon Tilley Nov 26 '12 at 17:39data is undefined. I set$scope.project = arguments[0]and it works, but I figured there was a more correct way. I'm not doing anything crazy in the JSON response, but will the object I'm looking for always be at index 0 inarguments[0]? – Wind Up Toy Nov 26 '12 at 18:22