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

How to implement the getting started example of django

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

Share

Shulou(Shulou.com)05/31 Report--

This article mainly introduces "how to realize the django entry example". In the daily operation, I believe many people have doubts about how to realize the django entry example. The editor consulted all kinds of materials and sorted out simple and easy-to-use operation methods. I hope it will be helpful for you to answer the doubt of "how to realize the django entry example". Next, please follow the editor to study!

Environment: ubuntu 14.04 server edition

# # pip & & virtualenv & & django

# # user: jack

1 configure the django development environment

2 create django project

Cd / home/jack/django_web

Django-admin.py startproject demo

3 start django

Cd demo

Python2.7 manage.py runserver 0.0.0.0 django 8080 # ordinary users cannot access ports below 1024. If you start the django application with a django account, you can listen to port 80.

6 browser test

Http://192.168.56.121:8080/

7 create a hello world view page

Cd / home/jack/django_web/demo/demo

Mkdir htmls

Cd htmls

Echo > _ _ init__.py

Vi first.py

#! / usr/bin/python

From django.http import HttpResponse

Def hello (request):

Return HttpResponse ("Hello World!")

8 configure url path mapping

Update / home/jack/django_web/demo/demo/urls.py

From django.conf.urls import patterns, include, url

From demo.htmls.first import hello

From django.contrib import admin

Admin.autodiscover ()

Urlpatterns = patterns (''

# Examples:

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

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

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

Url (r'^ hello/$', hello)

)

At this point, the study of "how to implement the introductory example of django" is over. I hope to be able to solve your doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!

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