Restangular 和查询参数不起作用

Restangular and query params not working

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

调用

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

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

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

但是 api 调用 Restangular 生成是

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

有什么想法吗?

你能试试吗:

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