摘要:
http://www.runoob.com/django/django-model.html django-admin startapp TestModel /models.py from django.db import models class Test(models.Model): name 阅读全文
摘要:
https://www.cnblogs.com/chenchao1990/p/5284237.html Form 一、使用Form Django中的Form使用时一般有两种功能: 1、生成html标签 2、验证输入内容 要想使用django提供的form,要在views里导入form模块 from 阅读全文