可以在API网址的末尾添加?limit=0
短语,以使查询不限制响应。有没有办法将它作为默认行为,例如http://my.api.com/resources/(没有?limit = 0)会返回所有资源吗?
答案 0 :(得分:14)
如the documentation所示,您可以在资源的limit
类中使用Meta
变量:
class FooResource(ModelResource):
class Meta:
limit = 0
或者您可以使用全局设置变量API_LIMIT_PER_PAGE
为所有模型设置它。
答案 1 :(得分:14)
class FooResource(ModelResource):
class Meta:
limit = 0
max_limit = 0