|
|
|
@ -2,10 +2,14 @@ from django.urls import path
|
|
|
|
|
|
|
|
|
|
|
|
from . import views
|
|
|
|
from . import views
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# 设置应用命名空间,用于URL反向解析
|
|
|
|
app_name = "comments"
|
|
|
|
app_name = "comments"
|
|
|
|
|
|
|
|
# URL模式列表
|
|
|
|
urlpatterns = [
|
|
|
|
urlpatterns = [
|
|
|
|
|
|
|
|
#文章评论提交接口
|
|
|
|
|
|
|
|
# 捕获整数类型article_id参数,映射到CommentPostView视图
|
|
|
|
path(
|
|
|
|
path(
|
|
|
|
'article/<int:article_id>/postcomment',
|
|
|
|
'article/<int:article_id>/postcomment',
|
|
|
|
views.CommentPostView.as_view(),
|
|
|
|
views.CommentPostView.as_view(),
|
|
|
|
name='postcomment'),
|
|
|
|
name='postcomment'),# URL名称,模板中可通过{% url 'comments:postcomment' article_id %}调用
|
|
|
|
]
|
|
|
|
]
|
|
|
|
|