Xin chào tôi có một vấn đề bực bội.
Tôi có một mẫu url như thế này:
# mproject/myapp.urls.py
url(r'^project/(?P<project_id>\d+)/$','user_profile.views.EditProject',name='edit_project'),
Nó hoạt động tốt trong trình duyệt nhưng để thử nghiệm, khi tôi thực hiện điều này trong trình bao:
from django.test import Client
from django.core.urlresolvers import reverse
client= Client()
response = client.get(reverse('edit_project'), project_id=4)
Tôi sợ hãi:
NoReverseMatch: Reverse for 'edit_project' with arguments '()' and keyword arguments '{}' not found.
Tôi đang thiếu gì ở đây?
from django.urls import reverse