摘要: 1 Python操作Redis之普通连接 # 1 pip3 install redis # 简单使用 from redis import Redis # conn=Redis() #连接对象 conn=Redis(host='127.0.0.1', port=6379) ret=conn.get(' 阅读全文
posted @ 2020-07-27 14:54 aksas 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 1 短信接口频率限制 # throttlings.py from rest_framework.throttling import SimpleRateThrottle class SMSThrotting(SimpleRateThrottle): scope = 'sms' def get_cac 阅读全文
posted @ 2020-07-27 14:50 aksas 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 1 登陆注册模态框 # Login.vue <template> <div class="login"> <div class="box"> <i class="el-icon-close" @click="close_login"></i> <div class="content"> <div c 阅读全文
posted @ 2020-07-27 14:48 aksas 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 1 git远程连接 # 1 码云(国内,快) # 2 新建仓库的时候,不要勾选Readme初始化这个而仓库 # 3 现在什么都没有,新建仓库 mkdir lqz_test cd lqz_test git init touch a.txt git add a.txt git commit -m "fi 阅读全文
posted @ 2020-07-27 14:47 aksas 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 1 路飞项目头部组件 1.1 路由跳转的方式 #html中路由跳转 <router-link to="/"> <img src="../assets/img/head-logo.svg" alt=""> </router-link> #js中控制路由跳转 this.$router.push('/') 阅读全文
posted @ 2020-07-27 14:36 aksas 阅读(185) 评论(0) 推荐(0) 编辑