有没有人知道如何使用include参数在网址上进行反向网址查找?例如,我有以下网址:
url(r'^photos/', include('photos.urls'), name="photos"),
在我看来,我想按如下方式访问它
def photos_redirect(request, path):
return HttpResponsePermanentRedirect(reverse('photos') + path)
但它收到以下错误:
Reverse for 'photos' with arguments '()' and keyword arguments '{}' not found.
答案 0 :(得分:0)
您必须撤消单个urlpattern。 photos
网址格式包含photos.urls
中的所有网址模式,因此您必须选择要指向哪个网址。