上一页 1 2 3 4 5 6 7 8 9 ··· 14 下一页
摘要: redis 安装:https://github.com/tporadowski/redis/releases/ 一 python操作redis 1 普通链接 pip install redis import redis conn = redis.Redis( host="localhost", po 阅读全文
posted @ 2024-05-15 19:47 蓝幻ﹺ 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 封装全局异常 common_exceptions.py from rest_framework.views import exception_handler from rest_framework.response import Response def common_exception_handl 阅读全文
posted @ 2024-05-15 19:46 蓝幻ﹺ 阅读(8) 评论(0) 推荐(0) 编辑
摘要: django中使用redis 方式一:通用方式 pool.py import redis POOL = redis.ConnectionPool(max_connections=10, decode_responses=True) 在哪里用,导入用即可 from utils.pool import 阅读全文
posted @ 2024-05-15 19:46 蓝幻ﹺ 阅读(101) 评论(0) 推荐(1) 编辑
摘要: 0 虚拟环境 创建虚拟环境 mkvirtualenv -p python3 luffy 在虚拟环境中装django pip install django==4.2.13 django-admin startproject 项目名 安装第三方模块 # drf模块 pip install djangor 阅读全文
posted @ 2024-05-15 19:46 蓝幻ﹺ 阅读(4) 评论(0) 推荐(0) 编辑
摘要: pinia 状态管理器,统一状态管理,组件间通信 state、getter 和 action,我们可以假设这些概念相当于组件中的 data、 computed 和 methods 1 安装 npm install pinia 2 在store/xx.js,写入代码,可以定义多个 import {de 阅读全文
posted @ 2024-05-15 19:45 蓝幻ﹺ 阅读(6) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 14 下一页