Angular's usual way of defining an isolated resource is:
angular.service('TheService', function($resource){
return $resource('api/url');
});
I'm trying to figure out the best way to write a model that relates to other models, such as an Order that has 1 or more OrderItems. My first idea is this:
- Create the
OrderServiceandOrderItemServiceas independent resource models - Write a controller that queries the
OrderServiceand watches the result array - When the result array changes, query the
OrderItemServicefor all of the item IDs and decorate theorderobject with extended information as it comes in
That seems a bit messy. Is there a more elegant way?