码迷,mamicode.com
首页 > Web开发 > 详细

django之创建第7-2个项目-url配置分离

时间:2016-04-05 02:09:18      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:

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配置分离

django之创建第7-2个项目-url配置分离

标签:

原文地址:http://www.cnblogs.com/dengyg200891/p/5353593.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!