Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

HelloWorld of Django

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/02 Report--

1. C:\ Users\ andy > django-admin startproject sundyblog # # create a project

C:\ Users\ andy > cd sundyblog

2. C:\ Users\ andy\ sundyblog > python manage.py startapp blog # # create module

3. Programming (editing views.py and urls.py)

4. C:\ Users\ andy\ sundyblog > python manage.py migrate # # generate sqlite database

5. C:\ Users\ andy\ sundyblog > python manage.py runserver # # start the service

Process effect diagram:

Views.py: # # result returned by address access

From django.shortcuts import render

From django.http import HttpResponse

# Create your views here.

Def hello (request):

Return HttpResponse ('Hello Sundy')

Urls.py: # # url binding returns the result

From django.conf.urls import include, url

From django.contrib import admin

Urlpatterns = [

# Examples:

# url (r'^ $', 'sundyblog.views.home', name='home')

# url (r'^ blog/', include ('blog.urls'))

Url (r'^ blog/$','blog.views.hello')

Url (r'^ admin/', include (admin.site.urls))

]

Access the effect image:

Browser input http://localhost:8000/blog/

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report