示例#1
0
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, include
from Insta.views import HelloWorld, PostListView, PostDetailView, PostCreatView, PostUpdateView, PostDeleteView, addLike, UserDetailView, addComment, toggleFollow, EditProfile

urlpatterns = [
    path('index', HelloWorld.as_view(), name='HelloWorld'),
    path('', PostListView.as_view(), name='index'),
    path('post/<int:pk>/', PostDetailView.as_view(), name='post_detail'),
    path('new/', PostCreatView.as_view(), name='make_post'),
    path('post/edit/<int:pk>/', PostUpdateView.as_view(), name='post_update'),
    path('post/delete/<int:pk>/', PostDeleteView.as_view(),
         name='post_delete'),
    path('like', addLike, name='addlike'),
    path('user/<int:pk>/', UserDetailView.as_view(), name='user_detail'),
    path('comment', addComment, name='addcomment'),
    path('togglefollow', toggleFollow, name='togglefollow'),
    path('edit_user/<int:pk>/', EditProfile.as_view(), name='edit_profile'),
]
示例#2
0
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 #app level create a urls.py then use project-level to use app-level urls
    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 include, path  # then we can use include

from Insta.views import (HelloWorld, PostsView, PostDetailView, PostCreateView,
                         PostUpdateView, PostDeleteView, addLike,
                         UserDetailView, addComment, toggleFollow, EditProfile)

urlpatterns = [
    path('helloworld', HelloWorld.as_view(),
         name='helloworld'),  #as_view funvtion是继承TemplateView
    #add a url posts/
    path('', PostsView.as_view(), name='posts'),
    path('post/<int:pk>', PostDetailView.as_view(), name='post_detail'),
    path('post/new/', PostCreateView.as_view(), name='make_post'),
    path('post/update/<int:pk>', PostUpdateView.as_view(), name='post_update'),
    path('post/delete/<int:pk>', PostDeleteView.as_view(), name='post_delete'),
    path('like', addLike, name='addLike'),
    path('user/<int:pk>', UserDetailView.as_view(), name='user_detail'),
    path('edit_profile/<int:pk>/', EditProfile.as_view(), name='edit_profile'),
    path('togglefollow', toggleFollow, name='togglefollow'),
    path('comment', addComment, name='addComment'),
]
示例#3
0
    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 include, path
from Insta.views import (HelloWorld, PostsView, PostDetailView, PostCreateView,
                         PostUpdateView, PostDeleteView, addLike, addComment,
                         UserDetailView, UserEdit, toggleFollow, ExploreView)

urlpatterns = [
    path('helloworld/', HelloWorld.as_view(), name='helloworld'),
    path('posts/', PostsView.as_view(), name='posts'),
    # Create a post url with a number saved as primary key for the following search in views
    path('post/<int:pk>/', PostDetailView.as_view(), name='post_detail'),
    path('post/new/', PostCreateView.as_view(), name='make_post'),
    path('post/update/<int:pk>/', PostUpdateView.as_view(),
         name='post_update'),
    path('post/delete/<int:pk>/', PostDeleteView.as_view(),
         name='post_delete'),
    path('like', addLike, name='addLike'),
    path('comment', addComment, name='addComment'),
    path('user_profile/<int:pk>/',
         UserDetailView.as_view(),
         name='user_detail'),
    path('edit_profile/<int:pk>/', UserEdit.as_view(), name='edit_profile'),
    path('togglefollow', toggleFollow, name='togglefollow'),
示例#4
0
"""Proj1 URL Configuration

The `urlpatterns` list routes URLs to views. For more information please see:
    https://docs.djangoproject.com/en/2.2/topics/http/urls/
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 include, path
from Insta.views import HelloWorld

urlpatterns = [
    path('', HelloWorld.as_view(), name='hello')
]