上一页 1 ··· 8 9 10 11 12 13 14 下一页
摘要: Uric组件2022文档 预备知识点: Python基础 Mysql 前端 Django DRF组件+VUE3 一 前端项目初始化 1.1 客户端项目创建 我们使用的vue-cli脚手架作为我们前端开发使用的框架,下面看一下vue-cli的安装。 安装脚手架: $ npm install -g @v 阅读全文
posted @ 2022-12-19 02:30 凫弥 阅读(419) 评论(4) 推荐(1) 编辑
摘要: 基本概念 自动化测试,也叫软件测试自动化。要学习软件测试自动化,首先就需要清楚什么是软件测试。 参考内容 扯淡,计算机基础 | 测试基础 | 测试过程 | 常用测试方法 | 缺陷管理 敏捷开发 | 软件质量管理 | 软件需求管理 | 浅谈测试模式 | 测试覆盖率 | 集成测试 | 系统测试 软件测试 阅读全文
posted @ 2022-12-09 21:40 凫弥 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 防火墙 systemctl status firewalld #查看防火墙状态 systemctl stop firewalld #关闭防火墙 systemctl disable firewalld#关闭防火墙开机启动 systemctl is-enabled firewalld.service#检 阅读全文
posted @ 2022-11-30 18:19 凫弥 阅读(34) 评论(0) 推荐(0) 编辑
摘要: Python发邮件 这里以QQ邮箱为例,首先要拿到授权码,这里登录你的QQ邮箱,在设置中,选择账号选项,下拉到POP3/IMAP/SMTP/Exchange/CardDAV/CalDAV服务项,获取授权码。 发送普通文本邮件 import smtplib from email.mime.text i 阅读全文
posted @ 2022-11-28 19:31 凫弥 阅读(331) 评论(0) 推荐(0) 编辑
摘要: 常见用于定时任务的: crontab django的定时任务 APScheduler celery:http://docs.jinkan.org/docs/celery/getting-started/introduction.html APScheduler pip install -i http 阅读全文
posted @ 2022-11-28 16:29 凫弥 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 后端 class AuctionModelSerializer(serializers.ModelSerializer): status = serializers.SerializerMethodField() items = serializers.SerializerMethodField() 阅读全文
posted @ 2022-11-07 03:25 凫弥 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 表结构 from django.db import models from django.contrib.contenttypes.models import ContentType from django.contrib.contenttypes.fields import GenericFore 阅读全文
posted @ 2022-11-06 07:50 凫弥 阅读(31) 评论(0) 推荐(0) 编辑
摘要: bootstrap-select插件压缩包 引入css <link rel="stylesheet" href="{% static 'plugin/bootstrap-select/css/bootstrap-select.min.css' %}"> 引入js <script src="{% st 阅读全文
posted @ 2022-11-03 22:25 凫弥 阅读(297) 评论(0) 推荐(0) 编辑
摘要: bootstrap-datepicker插件压缩包 引入css <link rel="stylesheet" href="{% static 'plugin/bootstrap-datepicker/css/bootstrap-datepicker.min.css' %}"> 引入js <scrip 阅读全文
posted @ 2022-11-03 22:08 凫弥 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 1.沙箱环境 一个用于开发测试的环境。 2.微信小程序支付 2.1 微信小程序平台 个人 企业(微信支付) 2.2 商户平台账号(企业) 开通商户平台 小程序 和 商户平台账号关联 2.3 账号 AppID 商户号 商户key(关键) 3. 微信支付的步骤 登录,获取用户openid,前端发送ope 阅读全文
posted @ 2022-11-02 07:22 凫弥 阅读(262) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 下一页