Restangular和查询参数不起作用

时间:2015-03-17 17:15:22

标签: json angularjs restangular

我在Ionic应用程序中使用Restangular。 我试图添加无限滚动,我必须使用Restangular调用

http://www.example.it/api/v1/contents.json?page=2

我正在查看Restangular文档(here),我尝试使用

Restangular.all("contents").getList("contents", {page: 2})

但是api调用Restangular generate是

http://www.example.it/api/v1/contents.json?0=c&1=o&2=n&3=t&4=e&5=n&6=t&7=s 

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

你可以尝试:

Restangular.all("contents").getList({"page": 2})