#coding=utf-8 from django.urls import path, re_path from . import views # 确保从当前目录导入views模块,前面的import语句有误 urlpatterns = [ path('', views.queryAll, name='home'), re_path(r'^page/(?P\d+)$', views.queryAll, name='pagination'), re_path(r'^post/(?P\d+)$', views.detail, name='post_detail'), re_path(r'^category/(?P\d+)$', views.queryPostByCid, name='category_posts'), re_path(r'^archive/(?P\d+)/(?P\d+)$', views.queryPostByCreated, name='archive'), ]