上一页 1 ··· 9 10 11 12 13 14 下一页
摘要: celery 佩奇详解 celery是一个基于Python开发的模块,可以帮助我们对任务进行分发和处理。 1.1 环境的搭建 pip3 install celery==4.4 安装broker: redis或rabbitMQ pip3 install redis / pika windows需额外安 阅读全文
posted @ 2022-10-31 07:29 凫弥 阅读(73) 评论(0) 推荐(0) 编辑
摘要: MD5加密 import hashlib def md5(string): m = hashlib.md5() m.update(string.encode('utf-8')) return m.hexdigest() 阅读全文
posted @ 2022-10-31 00:42 凫弥 阅读(61) 评论(0) 推荐(0) 编辑
摘要: # `通信流程` ![1667001050455](https://img2022.cnblogs.com/blog/2867340/202210/2867340-20221029075624657-1368044110.png) ``` 握手:b5 ff aa 3 1 10 aa 99 8 5b( 阅读全文
posted @ 2022-10-29 07:57 凫弥 阅读(571) 评论(0) 推荐(0) 编辑
摘要: scripts/init_news.py import os import sys import django # 准备 base_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) sys.path.append(ba 阅读全文
posted @ 2022-10-26 07:43 凫弥 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 后端 安装: pip install -U cos-python-sdk-v5 ####公共导入头: from qcloud_cos import CosConfig from qcloud_cos import CosS3Client import sys import logging from 阅读全文
posted @ 2022-10-25 05:13 凫弥 阅读(1449) 评论(0) 推荐(0) 编辑
摘要: 公共配置: # ######## sms ######## # 腾讯云短信应用的 app_id TENCENT_SMS_APP_ID = 6666666666 # 腾讯云短信应用的 app_key TENCENT_SMS_APP_KEY = "6666666666666666666666" # 腾讯 阅读全文
posted @ 2022-10-24 21:03 凫弥 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 常用的文档编辑器 富文本编辑器,ckeditor markdown编辑器,mdeditor 项目中想要应用markdown编辑器: 添加和编辑的页面中 textarea 输入框 -> 转换为markdown编辑器 1. textarea框通过div包裹以便以后查找并转化为编辑器 <div id='e 阅读全文
posted @ 2022-10-16 11:08 凫弥 阅读(608) 评论(0) 推荐(0) 编辑
摘要: 课程目标 运用vue+vue-router+vuex+element-ui搭建网站 对项目进行需求分析和模块划分以及功能划分 实现首页+全部+品牌周边页面渲染 查看商品详情页制作、商品排序以及分页功能实现 使用token+jwt实现网站用户登录退出 (后台) 使用meta元信息实现路由权限控制 实现 阅读全文
posted @ 2022-10-09 09:42 凫弥 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 媒体宝项目 01 创建项目(后端) 前端vue.js项目:city https://gitee.com/wupeiqi/city 后端django项目:mtb https://gitee.com/wupeiqi/mtb 项目代码的git上会同步更新,大家下载下来后,可以根据提交记录来进行回滚,查看看 阅读全文
posted @ 2022-09-27 22:19 凫弥 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 八:项目部署 项目部署的相关概念 关于企业项目上线的部署流程,主要包含以下3个方面: 落实并调整部署方案[1.0/2.0/3.0/] 确认与完善部署环境 确定部署架构与服务器节点 部署方案 1. 分析项目的产品需求文档,定好部署方案的方向 2. 分析项目开发文档,按照功能边界,设计部署的结点 3. 阅读全文
posted @ 2022-09-27 20:33 凫弥 阅读(91) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 下一页