I have to send an array of filters through get parameters in an API like this :
/myList?filters[nickname]=test&filters[status]=foo
Now if I send an object directly like this :
Restangular.one('myList').get({filters: {
nickname: 'test',
status: 'foo'
}});
The query really sent is
?filters={"nickname":"test","status":"foo"}
How to send a real array ? Should I thinks about an alternative ?