Python 与 redis 交互取出数据类型是 bytes 时,如何直接取出 str 数据类型 运行代码:(存 str 类型,得 bytes 类型,这是由于 Python3 与 redis 交互的驱动的问题,Python2 取出来的就是 str 类型的) [root@VM_2_29_centos ~]# worko ... continue reading redis zhuoyuebiji 2019-10-2 670
Fiddler 请求超时的 Session 背景色 显示成 红色 想法 最近突然有个想法,在 Fiddler 里能做到 显示 单个会话的消耗时间,那么我想 超时的会话 背景色 显示成指定的颜色,方便区分。 困难 时间差怎么跟指定数字比较,之前 官网的 消耗时间显示的字符串,不适 ... continue reading 软件测试 zhuoyuebiji 2019-9-30 1140
Python 的虚拟环境 pyenv 和 virtualenvwrapper 文档 pyenv 文档:https://github.com/pyenv/pyenv virtualenvwrapper:https://virtualenvwrapper.readthedocs.io/en/latest/ ... continue reading python zhuoyuebiji 2019-9-30 667
Django admin 实现 增加记录 和 修改记录 展现不同的表单 说明 提供一个参考,具体逻辑要看具体情况。本质就是根据条件展示不同的表单内容(注意表单必填项字段,保存时要记得传值)。 根据用户返回表单,注意必填项保存时要给值 from django.contrib import a ... continue reading django zhuoyuebiji 2019-9-29 1140
一款小而实用的开源屏幕录制生成 GIF 图片的软件 ScreenToGif(windows) 项目地址:https://github.com/NickeManarin/ScreenToGif/releases 自己在写博客的有时候要录制屏幕制作 gif 图。ScreenToGif 使用一段时间,录制屏幕后转成 gif 压缩后才 ... continue reading 计算机基础 zhuoyuebiji 2019-9-27 933
安卓(Android)云真机平台 腾讯优测 http://remote.utest.21kunpeng.com/deviceSearch?type=remote 云测 https://www.testin.cn/realmachine/index. ... continue reading 软件测试 zhuoyuebiji 2019-9-27 1821
Django admin list_filter 显示外键字段 models.py class Node(models.Model): """ 节点表 """ name = models.CharField(max_length=128, unique= ... continue reading django zhuoyuebiji 2019-9-25 2181
Django admin 对 list_filter 排序 参考文档 1. https://cloud.tencent.com/developer/ask/34273 2. https://djangosnippets.org/snippets/2885/ 3. ... continue reading django zhuoyuebiji 2019-9-25 1199
Django 数据查询中对字段进行排序 方法一:order_by 排序 # 更新时间字段,倒序排序 articles = Article.objects.filter(show_status=True).order_by('-time_created') # 更新时 ... continue reading django zhuoyuebiji 2019-9-25 1061
Mysql cannot connect(10038) 和 配置远程登录 笔记 设置密码 mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('root ... continue reading mysql zhuoyuebiji 2019-9-25 623