Django 示例删除视图

发布于 2024-12-03 01:16:23 字数 507 浏览 0 评论 0原文

可能的重复:
Django 基于类的 DeleteView 示例

几小时后的搜索我只是不知道如何使用删除视图。对不起我的愚蠢? 有人能给我举个例子吗?

url( r'^del/$', DeleteFormView.as_view( ) ),

class DeleteFormView( BaseDeleteView ):
    model = user_info
    context_object_name = "user_info_list"

DeleteFormView 必须使用对象 pk 或 slug 调用
这个错误一直存在 我做错了什么?

Possible Duplicate:
Example of Django Class-Based DeleteView

after hours search i just didn't know how to use DeleteView. Sorry for my foolish?
Can some one give me a example?

url( r'^del/

DeleteFormView must be called with either an object pk or a slug
this error always exist
What am doing wrong?

, DeleteFormView.as_view( ) ), class DeleteFormView( BaseDeleteView ): model = user_info context_object_name = "user_info_list"

DeleteFormView must be called with either an object pk or a slug
this error always exist
What am doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

清浅ˋ旧时光 2024-12-10 01:16:23

正如错误所述,您需要将某种参数传递给视图,以便它知道要删除哪个项目......例如:

url(r'^del/(?P<slug>\w+)/
, DeleteFormView.as_view()),

As the error says, you need to pass some sort of parameter to the view so it knows which item to delete... for example:

url(r'^del/(?P<slug>\w+)/
, DeleteFormView.as_view()),
苏璃陌 2024-12-10 01:16:23

另一篇文章可能会回答您的一些问题。你走在正确的轨道上,就像 @Daniel 所说,URL 中需要有某种标识符传递给视图,告诉它要删除什么。

如需使用模板的完整示例,查看 Django 用户表格

Another post might answer some of your questions. You are on the right track, and like @Daniel said, there needs to be some sort of identifier in the URL to pass to the view to tell it what to delete.

For a full example with a template, look to the Django-users form

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