1. Add an import: from other_app.views import Home 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') Including another URLconf 1. Import the include() function: from django.urls import include, path 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) """ from baton.autodiscover import admin from django.urls import path, include from fcuser.views import index, logout, RegisterView, LoginView from product.views import ProductList, ProductCreate, ProductDetail, ProductListAPI, ProductDetailAPI from order.views import OrderCreate, OrderList urlpatterns = [ path('admin/', admin.site.urls), path('baton/', include('baton.urls')), path('', index), # class의 경우 as_view()를 붙여야 함 path('register/', RegisterView.as_view()), path('login/', LoginView.as_view()), path('product/', ProductList.as_view()), path('product/create/', ProductCreate.as_view()), # int형 pk로 파라미터를 받아서 해당 pk를 가진 상품을 상세보기함 path('product/<int:pk>/', ProductDetail.as_view()), path('order/', OrderList.as_view()), path('order/create/', OrderCreate.as_view()), path('logout/', logout), path('api/product/', ProductListAPI.as_view()), path('api/product/<int:pk>/', ProductDetailAPI.as_view()) ]
Examples: Function views 1. Add an import: from my_app import views 2. Add a URL to urlpatterns: path('', views.home, name='home') Class-based views 1. Add an import: from other_app.views import Home 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') Including another URLconf 1. Import the include() function: from django.urls import include, path 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) """ from django.contrib import admin from django.urls import path from fcuser.views import index, RegisterView, LoginView from product.views import ProductList, ProductCreate, ProductDetail from order.views import OrderCreate, OrderList urlpatterns = [ path("admin/", admin.site.urls), path("", index), path("register/", RegisterView.as_view()), # 뷰클래스 사용시 as_view() 함수를 사용해야합니다 path("login/", LoginView.as_view()), path("product/", ProductList.as_view()), path("product/<int:pk>/", ProductDetail.as_view()), # path("product/create", ProductCreate.as_view()) 로 입력해서 계속 에러가 났엇음 슬래시 주의할것 path("product/create/", ProductCreate.as_view()), path("order/", OrderList.as_view()), path("order/create/", OrderCreate.as_view()), ]