1、urls.PY分离

# -*- coding: UTF-8 -*-
from django.conf.urls import patterns, include, url

# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('blog.views',
    # Examples:
    # url(r'^$', 'helloworld.views.home', name='home'),
    # url(r'^helloworld/', include('helloworld.foo.urls')),

    # Uncomment the admin/doc line below to enable admin documentation:
    url(r'^admin/doc/', include('django.contrib.admindocs.urls')),

    # Uncomment the next line to enable the admin:
    url(r'^admin/', include(admin.site.urls)),
    #url(r'^$', 'blog.views.index'),
    url(r'^blog/index/$', 'index'),
)

urlpatterns += patterns('blog.views',
    url(r'^blog/time/$', 'time'),
)

urlpatterns += patterns('blog.views',
    url(r'^blog/shengfen/$', 'shengfen')
)

2、views.py文件创建shengfen视图

3、templates目录下创建shengfen.html文件

4、百度云盘:django之创建第7-2个项目-url配置分离

相关文章:

  • 2021-11-23
  • 2022-01-18
  • 2022-01-20
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-01
  • 2021-11-23
相关资源
相似解决方案