Restangular如何构建自定义网址

时间:2015-06-06 18:54:16

标签: angularjs restangular

使用此代码

RestangularProvider.setBaseUrl('http://localhost:8080/api/1');
var elements = Restangular.all('events');
elements.getList();

我可以调用端点

  

http://localhost:8080/api/1/events

但如何管理代码

  

http://localhost:8080/api/1/events/around/me

1 个答案:

答案 0 :(得分:1)

您可以使用以下代码来获取事件

var getEvents = Restangular.oneUrl('getEventAroundMe', 'http://localhost:8080/api/1/events/around/me');