3
是否可以爲一個網址格式定義多個names?我想合併兩個視圖,但不查找所有對每個視圖的引用並更改它們。保留這兩個名字的另一個好處是如果我以後想再分割它們的話。具有多個名稱的網址格式
例如,合併
url(r'^login/', TemplateView.as_view(template_name='login.html'), name='login'),
url(r'^profile/', TemplateView.as_view(template_name='profile.html'), name='profile'),
到
url(r'^profile/', TemplateView.as_view(template_name='profile.html'), name=('login', 'profile')), #???