我正在使用Django DeleteView
删除数据库中的项目。我使用单独的模板来显示删除确认消息,但是当我按下是按钮时,我得到ProtectedError
,因为客户表与Accounts表链接。因此,我想处理ProtectedError
并在同一模板中为用户提供另一条消息。
以下是我用于执行删除的代码:
class Customer(DeleteView):
#Delete Customers
model = Customer
template_name = 'project_templates/delete_customer.html'
def get_success_url(self):
return reverse('inactive_customers')
如果有人可以建议我一种方法来处理这种情况,那真的很棒。
答案 0 :(得分:3)
你应该能够捕获异常。当你查看DeletionMixin
:
https://github.com/django/django/blob/master/django/views/generic/edit.py#L256
您可以覆盖post
方法并实现类似:
def post(self, request, *args, **kwargs):
try:
return self.delete(request, *args, **kwargs)
except ProtectedError:
# render the template with your message in the context
# or you can use the messages framework to send the message
希望这有帮助。