使用 django-tastypie 创建、更新和删除调用

发布于 2024-11-25 09:25:48 字数 286 浏览 2 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

琉璃繁缕 2024-12-02 09:25:48

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, while puts are updates and deletes are deletes. There are also obj_ 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文