我正在看我的AngularJS应用程序中从资源切换到矩形。我喜欢新型号,但是有一个问题。我不知道如何进行此API调用:
http://localhost:8000/api/entity/groups/1,2,3,4/events
我有这样的代码:
var GroupService = ['Restangular', function (Restangular) {
var restAngular = Restangular.withConfig(function (Configurer) {
Configurer.setBaseUrl('/api/entity');
});
return {
getEvents: function (groupIds) {
return restAngular.all('groups', groupsIds).getList('events');
}
}
}];
有没有一种方法可以要求一组小组(一个以上,但不是全部),然后获取所有这些小组的所有事件?
最佳答案
使用Restangular的several
方法
Restangular.several('accounts', 1234, 123, 12345).customGETLIST('events');
附注:我认为这可能是Restangular的一个错误,因为
.getList('events')
无法正常工作。关于javascript - GET中的矩形多ID,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21101471/