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.
How can I get respective OrderItems when a Order is loaded?
angular
.module('MyApp.services', ['ngResource'])
.factory('Order', function($resource) {
return $resource('/api/v1/Order/:orderId?format=json', {}, {});
});
.factory('OrderItem', function($resource) {
return $resource('/api/v1/OrderItem/:orderitemId?format=json', {}, {});
});
I tried a callback function on get Order to load OrderItems, but didn't work.
there is a very similar question, but it is obsolete: $resource relations in Angular.js