How to get the url path of a view function in django

后端 未结 7 1305
醉话见心
醉话见心 2021-02-05 06:41

As an example:

view.py

def view1( request ):
    return HttpResponse( \"just a test...\" )

urls.py

urlpatterns = patter         


        
7条回答
  •  说谎
    说谎 (楼主)
    2021-02-05 07:15

    You can use the reverse function for this. You could specify namespaces and names for url-includes and urls respectively, to make refactoring easier.

提交回复
热议问题