随笔 - 89
文章 - 43
评论 - 3
阅读 -
39982
11 2019 档案
VUE-02
摘要:VUE 02 options 成员获取 v pre 原义指令 for 循环指令 delimiters: 分隔符 计算属性成员 监听某个变量,修改另外变量 todolist 组件 python 由template + css + js 组成 组件具有复用性 复用组件是,数据要隔离 复用组件时,方法不需
阅读全文
localStorage和sessionStorage
摘要:WebStorage localStorage和sessionStorage
阅读全文
Django中使用 JWT
摘要:JWT Django Rest Framework JWT
阅读全文
drf 自定义response
摘要:```python ''' Response({ 'status':0, 'msg':'ok', 'results':[], '额外返回一些':'' },headers={},status=200,content_type='') APIResponse(0,'ok',results,status,header,content_type) ''' from rest_framework.respo
阅读全文
drf 自定义异常处理
摘要:DRF自定义异常处理 将admin中的密码密文显示
阅读全文
asyncio -- 协程库
摘要:asyncio 协程库 例: 回调 多协程 多协程结果获取 run_until_complete 和 run_forever 把容易阻塞的函数task 定义成可调出协程 call_later() 其他
阅读全文