Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个带有美味派的 API,我希望 API 端点只返回一个资源的 1 个实例。我希望这个工作的方式是强制执行一个参数,比如一个 ID。
例如,我希望 /api/v1/users 返回错误或声明所需参数不存在的语句。但是,我希望 /api/v1/user/:id 简单地返回该用户的 id。
也许我没有找到正确的东西,但我找不到任何关于如何做到这一点的文档。
您可以在 Class Meta 中使用以下内容
list_allowed_methods = [] detail_allowed_methods = ['get']
这将禁用列表值,但在提供 id 时允许它们。