gpt4 book ai didi

django - RequestFactory & reverse with pk(必须用对象 pk 或 slug 调用)

转载 作者:行者123 更新时间:2023-12-04 02:04:34 29 4
gpt4 key购买 nike

所以我有这段代码:

request = self.factory.get(reverse('portal-edit-automation', args=(self.rule.id,)))
response = EditAutomation.as_view()(request)

如果我在它之前设置一个 pdb 断点并执行:

(Pdb) reverse('portal-edit-automation', args=(self.rule.id,))
u'/portal/automations/edit/1/'

我得到了预期的响应。

那么为什么我在运行测试套件时会得到这个?

AttributeError: Generic detail view EditAutomation must be called with either an object pk or a slug.

最佳答案

您必须使用请求和主键调用 View ,例如:

EditAutomation.as_view()(request, pk=self.rule.id)

关于django - RequestFactory & reverse with pk(必须用对象 pk 或 slug 调用),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44420548/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com