上一页 1 2 3 4 5 6 ··· 13 下一页
摘要: 同页面form表单中get请求与post请求的理解 views.py def game_update(request): try: gameid=request.GET.get('id','') game=Game.objects.get(id=gameid) except Exception as 阅读全文
posted @ 2021-08-24 18:00 yescarf 阅读(102) 评论(0) 推荐(0) 编辑
摘要: django中遇到的问题 ### 1.post提交中: | Request Method: | POST | | | | | Request URL: | http://127.0.0.1:8000/scene/add | | Django Version: | 2.2.23 | | Excepti 阅读全文
posted @ 2021-08-22 12:59 yescarf 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 什么是admin管理后台 #配置步骤 #添加组 #增加用户 #对自定义表进行操作 注册自定义模型类 bookstore/admin.py from django.contrib import admin from .models import Book # Register your models 阅读全文
posted @ 2021-08-15 15:22 yescarf 阅读(929) 评论(0) 推荐(0) 编辑
摘要: 会话 会话定义 cookies cookies的特点 cookies的使用 veiws.py def set_cookie(request): resp=HttpResponse('set_cookies') resp.set_cookie('username','123456',5000) ret 阅读全文
posted @ 2021-08-15 15:22 yescarf 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 一对多 定义 语法 示例 模型类的创建 otm/models.py from django.db import models # Create your models here. class Publisher(models.Model): name=models.CharField('出版社',m 阅读全文
posted @ 2021-08-14 22:54 yescarf 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 关系映射 什么是关系映射 怎么建表 怎么传入数据 怎么查询数据 一对一的映射 on_delete 官网链接 cascade 是在orm层面进行设置 models.protect mysql默认 实例说明 models生成 oto.models.py from django.db import mod 阅读全文
posted @ 2021-08-13 19:47 yescarf 阅读(83) 评论(0) 推荐(0) 编辑
摘要: Meta类 阅读全文
posted @ 2021-08-13 14:06 yescarf 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 聚合查询 group by 整表聚合 In [1]: from django.db.models import * In [2]: from bookstore.models import Book In [3]: b1=Book.objects.aggregate(res=Count('price 阅读全文
posted @ 2021-08-12 19:48 yescarf 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 应用场景(F标记字段而非取值) 资源竞争的情况,F对象可以解决并发问题 字段之间的比较 In [1]: from bookstore.models import Book In [2]: from django.db.models import F In [3]: book=Book.objects 阅读全文
posted @ 2021-08-12 10:05 yescarf 阅读(62) 评论(0) 推荐(0) 编辑
摘要: orm删除数据 单个数据删除 In [2]: b1=Book.objects.get(id=1) In [3]: b1.delete() Out[3]: (1, {'bookstore.Book': 1}) In [4]: Book.objects.all() Out[4]: <QuerySet [ 阅读全文
posted @ 2021-08-10 19:09 yescarf 阅读(1669) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 13 下一页