zoukankan      html  css  js  c++  java
  • Django多业务模块的写法

     1 from django.shortcuts import render
     2 
     3 # Create your views here.
     4 
     5 
     6 from django.shortcuts import HttpResponse
     7 
     8 
     9 def home(request):
    10     return HttpResponse('<h1>CMDB</h1>')
    views.py
     1 """S14Djngo URL Configuration
     2 
     3 The `urlpatterns` list routes URLs to views. For more information please see:
     4     https://docs.djangoproject.com/en/1.11/topics/http/urls/
     5 Examples:
     6 Function views
     7     1. Add an import:  from my_app import views
     8     2. Add a URL to urlpatterns:  url(r'^$', views.home, name='home')
     9 Class-based views
    10     1. Add an import:  from other_app.views import Home
    11     2. Add a URL to urlpatterns:  url(r'^$', Home.as_view(), name='home')
    12 Including another URLconf
    13     1. Import the include() function: from django.conf.urls import url, include
    14     2. Add a URL to urlpatterns:  url(r'^blog/', include('blog.urls'))
    15 """
    16 from django.conf.urls import url
    17 from django.contrib import admin
    18 
    19 from cmdb import views
    20 
    21 
    22 
    23 urlpatterns = [
    24     url(r'^admin/', admin.site.urls),
    25     url(r'^h.html/',views.home),
    26 ]
    urls.py

    注意配置IP地址和端口

    打开浏览器访问:   http://127.0.0.1:8009/h.html/

  • 相关阅读:
    ABAP Code Inspector那些隐藏的功能,您都知道吗?
    L2-017. 人以群分
    L2-007. 家庭房产
    L2-014. 列车调度
    L2-004. 这是二叉搜索树吗?
    过山车
    hdu 3746 Cyclic Nacklace
    hdu 1867 A + B for you again
    hdu 1686 Oulipo
    Orders
  • 原文地址:https://www.cnblogs.com/ujq3/p/7884279.html
Copyright © 2011-2022 走看看