我正在尝试将Resource端点类扩展为包括新的GET端点,这些端点返回对象列表,但无法弄清楚该怎么做。
我正在浏览烦躁不安的文档https://restless.readthedocs.io/en/latest/tutorial.html,并拥有标准的列表和详细方法。
def列表(自己):
"""
GET request handler for /api/articles/ endpoint.
:return: List of articles.
"""
articles = article_service.get_all_articles()
return articles
是否可以指定url并创建多个列表终结点?有人可以指出我一个很好的资源,解释如何将Django-restless扩展到自定义端点。