Python/Django
[Python] Django reverser(), reverser_lazy() 사용하기
insub4067
2021. 12. 16. 12:52
https://stackoverflow.com/questions/48669514/difference-between-reverse-and-reverse-lazy-in-django
Difference between reverse() and reverse_lazy() in Django
I understand that we can use reverse() in FBV and reverse_lazy() in CBV. I understand that we have to use reverse_lazy() in CBV as the urls are not loaded when the file is imported (Ref: Reverse_la...
stackoverflow.com