5306/URL模式

13 lines
280 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#定义learning_logs的URL模式
from django.conf.urls import url
from . import views
app_name=learning_logs
urlpatterns=[
#主页
url(r^$,views.index,name=index),
#显示所有主题,
url(r^topics/$,views.topics,name=topics)
]