HTML highlight 代码前端高亮、代码美化 参考资料: 1. highlightjs 官方使用文档 2. highlightjs 代码各种风格 3. ckeditor 代码高亮插件 Code Snippet 官方使用文档 4.&n ... continue reading html zhuoyuebiji 2017/9/29 2349
鸿蒙 hdc 命令使用指导 简介 hdc(HarmonyOS Device Connector)是HarmonyOS为开发人员提供的用于调试的命令行工具,通过该工具可以在windows/linux/mac系统上与真实设备或者模拟器进行交互。 环境准备 ... continue reading 软件测试 zhuoyuebiji 2023/11/22 2310
Fiddler oSession 方法等收集(发送请求、保存到文件) 判断请求 响应的网络状态码 oSession.responseCode === 200 判断请求 uri 是否包含某些字符 oSession.uriContains("xieboke.net") ... continue reading 软件测试 zhuoyuebiji 2020/7/31 2291
Jmeter 5.3 服务器资源监控插件 PerfMon 使用介绍 jmeter(windows 版)下载 列表:https://downloads.apache.org/jmeter/binaries/ 启动 jmeter 下载 .zip 文件后解压,找到解压目录下的 b ... continue reading 软件测试 zhuoyuebiji 2020/9/18 2205
Html toastr.js 悬浮通知(h5 toast 提示) 资源地址 github: https://github.com/CodeSeven/toastr 官网:https://codeseven.github.io/toastr/ cdn 资源地址:https://w ... continue reading html zhuoyuebiji 2019/10/30 2190
Centos7 使用 Supervisor 守护进程 Celery Supervisor 官网 http://supervisord.org/ Supervisor 安装 Centos 7 安装 Supervisord centos7 进程守护命令 Syste ... continue reading centos zhuoyuebiji 2019/6/6 2152
Django admin list_filter 显示外键字段 models.py class Node(models.Model): """ 节点表 """ name = models.CharField(max_length=128, unique= ... continue reading django zhuoyuebiji 2019/9/25 2136
Django 多级分类,一个 model 搞定 代码是一个学习项目代码,觉得这种分类方式挺简便,所以分享出来了。 from django.db import models # Create your models here. class GoodsCategor ... continue reading django zhuoyuebiji 2019/9/25 2129
Django-simple-captcha 图形验证码使用总结 官方文档 https://django-simple-captcha.readthedocs.io/en/latest/usage.html https://github.com/mbi/django-simple-capt ... continue reading django zhuoyuebiji 2019/11/9 2123
Django annotate 分组统计 annotate 用法说明文档 http://doc.codingdict.com/django/ref/models/querysets.html#yiyi-860(基础) http://doc.codingdict.co ... continue reading django zhuoyuebiji 2019/10/30 2111