django-vue3-admin-backend/crud_book/urls.py
2025-10-23 01:10:28 +08:00

14 lines
482 B
Python
Raw Permalink 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.

#backend/crud_demo/urls.py
from rest_framework.routers import SimpleRouter
from .views import CrudBookModelViewSet, ReadingProgressViewSet
router = SimpleRouter()
# 这里进行注册路径并把视图关联上这里的api地址以视图名称为后缀这样方便记忆api/CrudBookModelViewSet
router.register("api/CrudBookModelViewSet", CrudBookModelViewSet)
router.register("api/reading-progress", ReadingProgressViewSet)
urlpatterns = [
]
urlpatterns += router.urls