我的应用程序有以下 url 条目:
url(r'^(?P<pk>\d+)/(?P<action>add|edit)/type/$', 'customer.views.edit', name='customer-edit'),
我想用相反的方式发布到这个网址。当我执行以下操作时,我收到错误 NoReverseMatch:
self.client.post(reverse('customer-edit'), {'something:'something'}, follow=True)
这是完整的错误:NoReverseMatch: Reverse for 'customer-edit' with arguments '()' and keyword arguments '{}' not found。
我需要将 args 或 kwargs 传递给反向吗?如果是这样,他们会是什么样子来匹配上面的 url?