我有一个网址来为这样的用户获取约会:
/user/:userId/appointments
如果我想获得多个用户的约会,URL会如何显示?
应该是:
/appointments?users=1d1,1d2..
谢谢,
克里斯。
最佳答案
集合是一种资源,因此/ appointments可以作为资源。
集合通常还通过查询字符串提供过滤器,这实际上就是users = id1,id2 ...的含义。
所以,
/appointments?users=id1,id2
可以用作过滤的RESTful资源。