模型与数据库

Posted on 2023-01-19 in django • Tagged with django, models and databases

1. 利用模型执行数据库操作

一旦创建数据模型后,Django 自动生成一套数据库操作 API,可以执行创建、检索、更新 和删除操作。

为 …


Continue reading

基于 wagtail 创建网站应用

Posted on 2020-10-03 in django • Tagged with wagtail, django, postgresql, git

参考链接

系统运行环境配置

设置开发与运行环境,默认环境为全新安装,仅安装 SSH 和 基 …


Continue reading

Django 学习

Posted on 2022-01-01 in django • Tagged with django

1. Introduction to Django

Scaffolding a Django Project and App

常用命令:

$ django-admin.py startproject myprojectname .
$ python manage runserver
$ python manage startapp myappname

Model View Template

Models
Django models define the data for your application and provide an abstraction layer to SQL database access through an Object Relational …

Continue reading