使用此代码
RestangularProvider.setBaseUrl('http://localhost:8080/api/1');
var elements = Restangular.all('events');
elements.getList();
我可以调用端点
但如何管理代码
答案 0 :(得分:1)
您可以使用以下代码来获取事件
var getEvents = Restangular.oneUrl('getEventAroundMe', 'http://localhost:8080/api/1/events/around/me');