上一页 1 ··· 4 5 6 7 8 9 10 下一页
摘要: 在使用rest_framework_jwt进行登陆验证获取token的时候会报 {"non_field_errors":["Unable to log in with provided credentials."]}%这个错误,原因是没有创建这个用户 使用 python3 manage.py cre 阅读全文
posted @ 2020-10-27 14:38 霖尤li 阅读(867) 评论(0) 推荐(0) 编辑
摘要: 路径模板 路径表关系梳理 1.1路径表 # 路径表 class Path(Base): title = models.CharField('路径名', max_length=16) img = models.ImageField('路径图片', upload_to='path', null=True 阅读全文
posted @ 2020-10-13 21:53 霖尤li 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 1.序列化常用字段参数 '''1. 选项参数''' name = serializers.CharField(min_length=3,max_length=20) max_length # 最大长度 min_lenght # 最小长度 allow_blank # 是否允许为空 max_value 阅读全文
posted @ 2020-10-12 21:26 霖尤li 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 1.vue微博回调空页面 注:微博回调空页面为: http://127.0.0.1:8888/oauth/callback/ 1.1 页面路径 components\oauth.vue <template> <div> <div v-show='visiable'> 绑定用户 用户名: <input 阅读全文
posted @ 2020-10-11 21:32 霖尤li 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 1.微博绑定用户接口 1.1 oauth/urls.py 中添加路由 urlpatterns = [ path('weibo/binduser/', views.OauthWeiboBindUser.as_view()), # /oauth/weibo/callback/ ] 1.2 oauth/v 阅读全文
posted @ 2020-10-11 21:31 霖尤li 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 1.vue微博回调空页面 注:微博回调空页面为: http://127.0.0.1:8888/oauth/callback/ 1.1 页面路径 components\oauth.vue <template> <div> <p>跳转中....</p> </div> </template> <scrip 阅读全文
posted @ 2020-10-11 21:29 霖尤li 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 1.微博回调接口 1.1 oauth/urls.py 中添加路由 urlpatterns = [ path('weibo/callback/', views.OauthWeiboCallback.as_view()), # /oauth/weibo/callback/ ] 1.2 oauth/vie 阅读全文
posted @ 2020-10-11 21:25 霖尤li 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 1.在Vue页面加载时动态发送请求获取微博授 权url 1.1 在 components\common\lab_header.vue 中写oauth动态获取微 博授权**URL // 获取微博登录地址 oauth() { // 从后端获取 微博登录地址 oauth_post().then((resp 阅读全文
posted @ 2020-10-11 21:24 霖尤li 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 1.创建apps/oauth模块进行oauth认证 '''2.1 在apps文件夹下新建应用: oauth''' cd syl/apps python ../manage.py startapp oauth # 切换到apps文件夹下执行创建命令 '''2.2 添加子路由: oauth/urls.p 阅读全文
posted @ 2020-10-11 21:23 霖尤li 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 1.注册账号 注册新浪微博账号 进入首页。创建网站接入的应用: https://open.weibo.com/ 创建应用 基本信息页面: https://open.weibo.com/apps/3516473472/info/advanced 高级信息页面 2.接口文档 查看接口文档 https:/ 阅读全文
posted @ 2020-10-11 21:22 霖尤li 阅读(229) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 下一页