摘要:
1.微博三方登录流程 携带参数 https://api.weibo.com/oauth2/authorize? client_id=4122644977 &response_type=code &state=study& forcelogin=true& redirect_uri=https%3A% 阅读全文
摘要:
注册验证功能 检查用户名功能 检查手机号功能 检查密码功能 检查短信验证码功能 检查图片验证码功能 <script> methods:{ // 检查用户名 是否使用(存在) check_username() { // return true // 注释检查用户名功能 console.log('判断用 阅读全文
摘要:
1.完善注册接口 1.1 修改user/views.py中完善视图函数 # 完整注册接口 class RegisterView(APIView): """ 用户注册, 权限是: 匿名用户可访问 """ # 自定义权限类 permission_classes = (AllowAny,) def pos 阅读全文
摘要:
1.vue检查用户名是否重复 前端函数如下,js方法代码无需更改,前端代码逻辑在components\common\lab_header.vue 只需要修改components\axios_api\http.js中调用的后端地址 // axios.defaults.baseURL = "http:/ 阅读全文
摘要:
1 在user/urls.py中添加 urlpatterns = [ path('count/', views.RegCountView.as_view()), # 查询用户名手机号使用量的视图, /user/count/ ] 1.1 在user/views.py中添加视图函数 # 查询用户数量接口 阅读全文
摘要:
3.celery配置与基本使用 3.1 安装celery、 pip install celery @ https://github.com/celery/celery/tarball/master 3.2 新建celery/main.py配置celery # celery_task/main.py 阅读全文
摘要:
1.vue发送短信逻辑 前端函数如下,js方法代码无需更改,前端代码逻辑在components\common\lab_header.vue 只需要修改components\axios_api\http.js中调用的后端地址 // axios.defaults.baseURL = "http://12 阅读全文
摘要:
1.pipeline原理 redis基本语法:https://www.cnblogs.com/xiaonq/p/7919111.html redis四篇:https://www.cnblogs.com/xiaonq/category/1544586.html 1.1 redis发送数据原理 Redi 阅读全文
摘要:
celery理解与多线程区别 celecry 在处理多个任务时会给你一个当前的结果或编号(eg:我在执行中,执行完毕以后叫你并返回结果),这时我就可以去做**其他事情提高了我的性能和效率**。 而多线程是处理多个任务时还是会让我继续等待其他线程执行完毕,而这时我不能去做**其他事情,从而多线程只是解 阅读全文
摘要:
1.注册容联云账号 1.1 注册账号 https://www.yuntongxun.com/user/login 1.2 登录即可看到开发者账号信息 1.3 添加测试账号 2.使用容联云发送代码测试 # -*- coding: utf-8 -*- # libs/rl_sms.py from rong 阅读全文