会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
fuminer
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
26
27
28
29
30
31
32
下一页
2022年11月3日
bootstrap-datepicker的使用
摘要: bootstrap-datepicker插件压缩包 引入css <link rel="stylesheet" href="{% static 'plugin/bootstrap-datepicker/css/bootstrap-datepicker.min.css' %}"> 引入js <scrip
阅读全文
posted @ 2022-11-03 22:08 凫弥
阅读(314)
评论(0)
推荐(0)
2022年11月2日
小程序微信支付
摘要: 1.沙箱环境 一个用于开发测试的环境。 2.微信小程序支付 2.1 微信小程序平台 个人 企业(微信支付) 2.2 商户平台账号(企业) 开通商户平台 小程序 和 商户平台账号关联 2.3 账号 AppID 商户号 商户key(关键) 3. 微信支付的步骤 登录,获取用户openid,前端发送ope
阅读全文
posted @ 2022-11-02 07:22 凫弥
阅读(327)
评论(0)
推荐(0)
2022年10月31日
celery
摘要: celery 佩奇详解 celery是一个基于Python开发的模块,可以帮助我们对任务进行分发和处理。 1.1 环境的搭建 pip3 install celery==4.4 安装broker: redis或rabbitMQ pip3 install redis / pika windows需额外安
阅读全文
posted @ 2022-10-31 07:29 凫弥
阅读(148)
评论(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 凫弥
阅读(83)
评论(0)
推荐(0)
2022年10月29日
AGV
摘要: # `通信流程`  ``` 握手:b5 ff aa 3 1 10 aa 99 8 5b(
阅读全文
posted @ 2022-10-29 07:57 凫弥
阅读(785)
评论(0)
推荐(0)
2022年10月26日
python制作django批量创建数据离线脚本
摘要: 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 凫弥
阅读(59)
评论(0)
推荐(0)
2022年10月25日
腾讯云COS对象存储服务的使用
摘要: 后端 安装: 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 凫弥
阅读(1846)
评论(0)
推荐(0)
2022年10月24日
腾讯云短信的使用
摘要: 公共配置: # ######## sms ######## # 腾讯云短信应用的 app_id TENCENT_SMS_APP_ID = 6666666666 # 腾讯云短信应用的 app_key TENCENT_SMS_APP_KEY = "6666666666666666666666" # 腾讯
阅读全文
posted @ 2022-10-24 21:03 凫弥
阅读(313)
评论(0)
推荐(0)
2022年10月16日
python实现markdown文档编辑器应用
摘要: 常用的文档编辑器 富文本编辑器,ckeditor markdown编辑器,mdeditor 项目中想要应用markdown编辑器: 添加和编辑的页面中 textarea 输入框 -> 转换为markdown编辑器 1. textarea框通过div包裹以便以后查找并转化为编辑器 <div id='e
阅读全文
posted @ 2022-10-16 11:08 凫弥
阅读(731)
评论(0)
推荐(0)
2022年10月9日
xmall商城项目实战
摘要: 课程目标 运用vue+vue-router+vuex+element-ui搭建网站 对项目进行需求分析和模块划分以及功能划分 实现首页+全部+品牌周边页面渲染 查看商品详情页制作、商品排序以及分页功能实现 使用token+jwt实现网站用户登录退出 (后台) 使用meta元信息实现路由权限控制 实现
阅读全文
posted @ 2022-10-09 09:42 凫弥
阅读(388)
评论(0)
推荐(0)
上一页
1
···
26
27
28
29
30
31
32
下一页
公告