使用 django-tastypie 创建、更新和删除调用
我正在使用 django-tastypie 为我的项目构建 API。我遵循了tastypie-doc。
使用此文档,我可以调用 GET 方法并根据参数过滤数据。但我找不到 PUT(更新)、DELETE(删除对象)和 POST(创建新对象)的任何示例。
有谁知道如何在 django-tastypie 中编写创建、更新和删除的调用?
感谢大家。
I am using django-tastypie to build the API for my project. I followed the tastypie-doc.
Using this doc I am able to call the GET method and filter the data based on the parameter. But I couldn't find any examples for PUT(UPDATE), DELETE (delete object) and POST(Create a new object).
Does anyone know how to write a call to create, update and delete in django-tastypie?
Thanks to all.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
post_list 和其他
post
命令是 CREATE,而put
是更新,delete
是删除。还有实现这些方法的 obj_ 方法。您还可以查看 http://django-tastypie.readthedocs 中的示例.org/en/latest/cookbook.html 其中显示了如何执行每个基本操作。
另外,尝试一些通用的 Django 教程,因为它们也应该为您提供相关信息。
post_list and other
post
commands are CREATEs, whileput
s are updates anddelete
s are deletes. There are alsoobj_
methods that implement these methods.You can also take a look at the examples at http://django-tastypie.readthedocs.org/en/latest/cookbook.html which show how to do each of the basic actions.
Also, try some general Django tutorials, as they should also provide you with relevant information.