Django cho người mới: Xây dựng web app đầu tiên với Python

Django là gì?

Django là web framework mạnh mẽ nhất của Python, theo triết lý "batteries included". Django được sử dụng bởi Instagram, Pinterest, Mozilla.

Cài đặt và khởi tạo project

pip install django
django-admin startproject mysite
cd mysite
python manage.py startapp blog
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver

Mô hình MTV

  • Model: Định nghĩa cấu trúc dữ liệu
  • Template: Giao diện HTML
  • View: Logic xử lý request
from django.db import models

class BaiViet(models.Model):
    tieu_de = models.CharField(max_length=200)
    noi_dung = models.TextField()
    ngay_dang = models.DateTimeField(auto_now_add=True)

    class Meta:
        ordering = ["-ngay_dang"]

    def __str__(self):
        return self.tieu_de

Django là lựa chọn tuyệt vời cho các dự án web từ nhỏ đến lớn.

Chia sẻ bài viết: