上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 31 下一页
摘要: 1. 在已注册的app下创建一个templatetags的文件夹 2. 在templatetags下创建一个py文件 例 from django.template import Library from wed import models register = Library() @register 阅读全文
posted @ 2020-03-25 17:42 流年中渲染了微笑 阅读(439) 评论(0) 推荐(0)
摘要: from django.db import models class Project(models.Model): """ 项目表 """ COLOR_CHOICES = ( (1, "#56b8eb"), # 56b8eb (2, "#f28033"), # f28033 (3, "#ebc656 阅读全文
posted @ 2020-03-25 16:27 流年中渲染了微笑 阅读(1342) 评论(2) 推荐(0)
摘要: 1. settings WHITE_REGEX_URL_LIST = [ "/register/", "/send/sms/", "/login/", "/image/code/", "/index/", ] 2. 中间件 from django.utils.deprecation import M 阅读全文
posted @ 2020-03-25 10:51 流年中渲染了微笑 阅读(1200) 评论(0) 推荐(0)
摘要: Python生成随机验证码,需要使用PIL模块. 安装 pip3 install pillow 基本使用 1. 创建图片 from PIL import Image img = Image.new(mode='RGB', size=(120, 30), color=(255, 255, 255)) 阅读全文
posted @ 2020-03-24 17:07 流年中渲染了微笑 阅读(176) 评论(0) 推荐(0)
摘要: 我们有时候想把全部的校验都写在form验证中,就需要我们把request里包含的内容传过去,怎么传呢? 1. 实例化的时候执行自己的__init__,自己没有的找父类的 2,写自己的__init__方法 使用 例如:注册时候的短信验证 返回信息给前端 还有一个小问题 就是在settings里设置 # 阅读全文
posted @ 2020-03-23 11:04 流年中渲染了微笑 阅读(186) 评论(0) 推荐(0)
摘要: # 竞价 GET: http://www.xxx.com/deposit/?item_id=1 # 提交竞价 POST: http://www.xxx.com/deposit/ class BidView(ListAPIView, CreateAPIView): queryset = models. 阅读全文
posted @ 2020-03-17 22:44 流年中渲染了微笑 阅读(454) 评论(0) 推荐(0)
摘要: 一、基本使用 django_celery_demo ├── app01 │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── models.py │ ├── tasks.py │ ├── tests.py │ └─ 阅读全文
posted @ 2020-03-17 15:19 流年中渲染了微笑 阅读(251) 评论(0) 推荐(0)
摘要: celery,处理任务的Python的模块 对任务进行分发和处理 场景1: 对【耗时的任务】,通过celery,将任务添加到broker(队列),然后立即给用户返回一个任务ID。 当任务添加到broker之后,由worker去broker获取任务并处理任务。 任务弯完成之后,再将结果放到backen 阅读全文
posted @ 2020-03-16 20:24 流年中渲染了微笑 阅读(180) 评论(2) 推荐(0)
摘要: 结论:在serializer中可以调用request 有下面的接口 class TestSer(serializers.ModelSerializer): xx = serializers.SerializerMethodField() 自定义的字段 class Meta: model = mode 阅读全文
posted @ 2020-03-15 17:21 流年中渲染了微笑 阅读(1264) 评论(0) 推荐(1)
摘要: 1. 打开码云 登陆 https://gitee.com/ 2. 加号 新建 3. 4. 依照提示一次输入命令即可 阅读全文
posted @ 2020-03-12 00:24 流年中渲染了微笑 阅读(298) 评论(0) 推荐(0)
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 31 下一页