说这是我的网址:
url(r'^$', mainApp_views.homepage),
是否可以在视图和中间件中检查此文本=“ mainApp_views.homepage”?
提前致谢,
最佳答案
你想要类似的东西
from django.core.urlresolvers import resolve
def your_view(request):
# resolve the url from the path
url_name = resolve(request.path).url_name
您可能也想在URL中添加名称
name='home'
关于python - 如何在 View 中检查Django URL的名称,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45498492/