Mac 之 STF 搭建(淘宝源安装) 参考链接: https://www.jianshu.com/p/5fe8cb7d214f (MAC 直接安装 STF) https://www.jianshu.com/p/c5c298486dbd(homebrew 安装指定版本 nod ... continue reading 软件测试 zhuoyuebiji 2019/5/10 1296
Python3 + Django + xamdin + DjangoUediter,UEditorField 在 xadmin 下加载不出来的解决办法 使用环境 python==3.6.8 django==1.11.18 xadmin # pip install git+git://github.com/sshwsfc/xadmin.git DjangoUed ... continue reading django zhuoyuebiji 2019/6/13 1295
Django 图片保存至七牛云前再使用 tinify 压缩 工作中应用图片时会觉得图片能压缩又不失去显示效果,岂不美哉,果断用 tinify 来压缩图片,一来可以减小图片占用空间大小,二来放到服务器后还能节省存储空间,用于显示时也能提高图片的访问速度。 之前已经在 djan ... continue reading django zhuoyuebiji 2019/9/24 1284
Jmeter 聚合报告(Aggregate Report)怎么看 JMeter中的聚合报告(Aggregate Report)提供了关于性能测试的关键统计信息。它包含了一系列的性能指标,帮助你理解被测试系统的表现。下面是如何理解聚合报告中的每个指标: Label:该列显示了各个采 ... continue reading 软件测试 zhuoyuebiji 2024/3/11 1271
Django DateTimeField 指定日期筛选(How can I filter a date of a DateTimeField in Django) models.py class AnchorBindAgent(models.Model): """ 主播绑定到代理,绑定规则 """ end_time_default = (timezon ... continue reading django zhuoyuebiji 2020/4/23 1258
Django 数据查询中对字段进行排序 方法一:order_by 排序 # 更新时间字段,倒序排序 articles = Article.objects.filter(show_status=True).order_by('-time_created') # 更新时 ... continue reading django zhuoyuebiji 2019/9/25 1246
ApkInstaller Apk 安装工具 Apk Installer——Apk 安装工具 介绍 Apk Installer(原名:WSAInstallTool,自1.2.3.0版本后更名)是一款Windows下自动 ... continue reading 软件测试 zhuoyuebiji 2024/9/24 1240
Selenium-server-standalone 分布式自动化测试 搭建 机器准备 linux 主机( 本次使用 centos7,hub 服务) windows 主机(win10,node 节点) hub 服务端环境准备 java 环境安装 文档 1 文档 2 ... continue reading 软件测试 zhuoyuebiji 2021/5/19 1238
Django admin 列表禁用删除操作,编辑页面禁用删除按钮 class AnchorBindAgentAdmin(admin.ModelAdmin): def get_actions(self, request): # 列表禁用删除操作 if ' ... continue reading django zhuoyuebiji 2020/4/3 1228
Celery ValueError: not enough values to unpack (expected 3, got 0) 的解决方法(windows) 错误环境 windows 10 python 3.6 django &nb ... continue reading django zhuoyuebiji 2020/2/27 1225