搜尋
首頁後端開發Python教學Django Stack 入門:建立完整項目

Getting Started with the Django Stack: Create a Full Project

If you're new to the Python world, and you're wondering what the heck Django is, here's an article that might help as a practical introduction.

Django is like that toolkit you wish you always had. It makes building powerful, scalable web applications not only possible but genuinely fun. And guess what? You don’t need to be an expert to get started.

In this guide, we're going to take a hands-on approach to create a complete Django project from scratch. By the end, you'll have your own fully functioning web app that you can tweak and improve. Let's dive right in!

For a detailed overview of the Django stack, you can visit this page on Code Clash.

Prerequisites

Before you get started, you'll need a few things installed on your computer:

  1. Python 3.x: Django requires Python 3.x to work properly.
  2. pip: This is Python's package manager, and you'll use it to install Django and other packages.
  3. Virtualenv (optional but highly recommended): It helps you create isolated environments so you can keep the dependencies of different projects separate.

If you don’t have Python yet, you can download it from python.org.

Step 1: Set Up Your Environment

First things first—we need to set up a virtual environment for our Django project. This will keep all our project dependencies in one place and ensure they don't interfere with other projects on your system.

To create a virtual environment, run the following command:

# Create a virtual environment
python -m venv myenv

# Activate the virtual environment
# On Windows
myenv\Scripts\activate

# On macOS/Linux
source myenv/bin/activate

Once your virtual environment is activated, go ahead and install Django:

pip install django

And just like that, you’re ready to start building!

Step 2: Create a New Django Project

Let’s kick off by creating a new Django project. Run the following command to create the project:

django-admin startproject myproject

This command will generate a new directory called myproject, and it will contain the following structure:

myproject/
    manage.py
    myproject/
        __init__.py
        settings.py
        urls.py
        asgi.py
        wsgi.py
  • manage.py: A script that helps you manage the project (e.g., starting the server, migrating databases).
  • settings.py: Contains all the configuration settings for your Django project, like database info and installed apps.
  • urls.py: Where you map URLs to their corresponding views.

Step 3: Run the Development Server

Okay, time to see if everything is working. Navigate into your project folder and start the development server:

cd myproject
python manage.py runserver

Now, open your browser and go to http://127.0.0.1:8000/. You should see the default Django welcome page, complete with a rocketship. This means your project is up and running—awesome!

Step 4: Create a Django App

Django projects are like big boxes, and inside those boxes, we have smaller boxes called "apps." Apps are modular components of your project, like a blog, a user authentication system, or an e-commerce module.

Let’s create an app called blog by running this command:

python manage.py startapp blog

This will create a new folder named blog containing files like views.py, models.py, and others to help you organize your code.

To let Django know about your new app, add 'blog' to the INSTALLED_APPS list in myproject/settings.py:

INSTALLED_APPS = [
    ...
    'blog',
]

Step 5: Define Models

A model in Django is simply a Python class that defines how your data is structured. Open blog/models.py and define a simple model for a blog post:

from django.db import models

class Post(models.Model):
    title = models.CharField(max_length=100)
    content = models.TextField()
    date_created = models.DateTimeField(auto_now_add=True)
  • title: A short text field for the post title.
  • content: A longer text field for the post content.
  • date_created: Automatically stores the date when the post is created.

Now, we need to apply these changes to our database by running the following commands:

python manage.py makemigrations
python manage.py migrate

These commands will create the necessary database tables for the Post model.

Step 6: Create Views and Templates

A view is where the logic happens. It takes a request and returns a response, often rendering an HTML page. Let’s create a view to display all blog posts. Open blog/views.py and add:

from django.shortcuts import render
from .models import Post

def home(request):
    posts = Post.objects.all()
    return render(request, 'blog/home.html', {'posts': posts})

This home view retrieves all the posts from the database and sends them to a template called home.html.

Next, let’s create the template. Inside the blog/ directory, create a folder called templates/blog/ and add a file named home.html:



    <title>Blog Home</title>


    <h1 id="Blog-Posts">Blog Posts</h1>
    {% for post in posts %}
        <div>
            <h2 id="post-title">{{ post.title }}</h2>
            <p>{{ post.content }}</p>
            <small>Published on: {{ post.date_created }}</small>
        </div>
    {% endfor %}


This HTML code will display all the posts with their title, content, and creation date.

Step 7: Set Up URL Routing

Now, we need to set up URL routing to connect the views to the right URLs. In the blog/ directory, create a file named urls.py (if it doesn't exist) and add:

from django.urls import path
from . import views

urlpatterns = [
    path('', views.home, name='blog-home'),
]

Then, include the blog URLs in the main project’s urls.py file:

from django.contrib import admin
from django.urls import path, include

urlpatterns = [
    path('admin/', admin.site.urls),
    path('', include('blog.urls')),
]

This way, when someone visits the root URL, Django will serve the home view from the blog app.

Step 8: Test Your Application

You’re almost there! Let’s run the server again and see if our blog works:

python manage.py runserver

Go back to http://127.0.0.1:8000/ in your browser, and you should see a list of all your blog posts—congratulations, you’ve built your first Django app!

Additional Resources

  • Django Documentation - The official documentation is a treasure trove of information and examples.
  • Python-Anaconda Stack - Learn how Python can be used with Anaconda for data science.
  • Best Frameworks for Web Development - Explore the best web development frameworks, including Django.

Conclusion

In this guide, we walked through setting up a Django environment, creating a new project, and building a simple blogging app. Django has a lot of built-in features that make web development faster and easier, so you can focus on building what matters most. If you’re ready for more, check out Code Clash’s Django Stack page to dive deeper into the world of Django.

Happy coding, and welcome to the Django community!

以上是Django Stack 入門:建立完整項目的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
Python是否列表動態陣列或引擎蓋下的鏈接列表?Python是否列表動態陣列或引擎蓋下的鏈接列表?May 07, 2025 am 12:16 AM

pythonlistsareimplementedasdynamicarrays,notlinkedlists.1)他們areStoredIncoNtiguulMemoryBlocks,mayrequireRealLealLocationWhenAppendingItems,EmpactingPerformance.2)LinkesedlistSwoldOfferefeRefeRefeRefeRefficeInsertions/DeletionsButslowerIndexeDexedAccess,Lestpypytypypytypypytypy

如何從python列表中刪除元素?如何從python列表中刪除元素?May 07, 2025 am 12:15 AM

pythonoffersFourmainMethodStoreMoveElement Fromalist:1)刪除(值)emovesthefirstoccurrenceofavalue,2)pop(index)emovesanderturnsanelementataSpecifiedIndex,3)delstatementremoveselemsbybybyselementbybyindexorslicebybyindexorslice,and 4)

試圖運行腳本時,應該檢查是否會遇到'權限拒絕”錯誤?試圖運行腳本時,應該檢查是否會遇到'權限拒絕”錯誤?May 07, 2025 am 12:12 AM

toresolvea“ dermissionded”錯誤Whenrunningascript,跟隨台詞:1)CheckAndAdjustTheScript'Spermissions ofchmod xmyscript.shtomakeitexecutable.2)nesureThEseRethEserethescriptistriptocriptibationalocatiforecationAdirectorywherewhereyOuhaveWritePerMissionsyOuhaveWritePermissionsyYouHaveWritePermissions,susteSyAsyOURHomeRecretectory。

與Python的圖像處理中如何使用陣列?與Python的圖像處理中如何使用陣列?May 07, 2025 am 12:04 AM

ArraysarecrucialinPythonimageprocessingastheyenableefficientmanipulationandanalysisofimagedata.1)ImagesareconvertedtoNumPyarrays,withgrayscaleimagesas2Darraysandcolorimagesas3Darrays.2)Arraysallowforvectorizedoperations,enablingfastadjustmentslikebri

對於哪些類型的操作,陣列比列表要快得多?對於哪些類型的操作,陣列比列表要快得多?May 07, 2025 am 12:01 AM

ArraySaresificatificallyfasterthanlistsForoperationsBenefiting fromDirectMemoryAcccccccCesandFixed-Sizestructures.1)conscessingElements:arraysprovideconstant-timeaccessduetocontoconcotigunmorystorage.2)iteration:araysleveragececacelocality.3)

說明列表和數組之間元素操作的性能差異。說明列表和數組之間元素操作的性能差異。May 06, 2025 am 12:15 AM

ArraySareBetterForlement-WiseOperationsDuetofasterAccessCessCessCessCessCessCessCessAndOptimizedImplementations.1)ArrayshaveContiguucuulmemoryfordirectAccesscess.2)列出sareflexible butslible butslowerduetynemicizing.3)

如何有效地對整個Numpy陣列進行數學操作?如何有效地對整個Numpy陣列進行數學操作?May 06, 2025 am 12:15 AM

在NumPy中进行整个数组的数学运算可以通过向量化操作高效实现。1)使用简单运算符如加法(arr 2)可对数组进行运算。2)NumPy使用C语言底层库,提升了运算速度。3)可以进行乘法、除法、指数等复杂运算。4)需注意广播操作,确保数组形状兼容。5)使用NumPy函数如np.sum()能显著提高性能。

您如何將元素插入python數組中?您如何將元素插入python數組中?May 06, 2025 am 12:14 AM

在Python中,向列表插入元素有兩種主要方法:1)使用insert(index,value)方法,可以在指定索引處插入元素,但在大列表開頭插入效率低;2)使用append(value)方法,在列表末尾添加元素,效率高。對於大列表,建議使用append()或考慮使用deque或NumPy數組來優化性能。

See all articles

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱工具

WebStorm Mac版

WebStorm Mac版

好用的JavaScript開發工具

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

強大的PHP整合開發環境

禪工作室 13.0.1

禪工作室 13.0.1

強大的PHP整合開發環境

mPDF

mPDF

mPDF是一個PHP庫,可以從UTF-8編碼的HTML產生PDF檔案。原作者Ian Back編寫mPDF以從他的網站上「即時」輸出PDF文件,並處理不同的語言。與原始腳本如HTML2FPDF相比,它的速度較慢,並且在使用Unicode字體時產生的檔案較大,但支援CSS樣式等,並進行了大量增強。支援幾乎所有語言,包括RTL(阿拉伯語和希伯來語)和CJK(中日韓)。支援嵌套的區塊級元素(如P、DIV),

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用