此博客链接:https://www.cnblogs.com/ping2yingshi/p/13207323.html 准备工作 找到你安装位置中的bin中的jmeter.bat文件。双击打开。 启动后会出现两个页面。 测试工作 1 前言 一个http请求接口http://localhost:8080 ...
分类:
其他好文 时间:
2020-06-29 13:07:39
阅读次数:
81
今日学习内容 # Ajax: # 免费网站空间 :http://free.3v.do/ # Wampserver 配置方法 1. 修改:httpd-vhosts.conf文件,增加Require all granted 使用#关闭Require local或直接删除即可 #Require local ...
分类:
其他好文 时间:
2020-06-29 11:16:53
阅读次数:
68
Given two positive integers n and k. A factor of an integer n is defined as an integer i where n % i == 0. Consider a list of all factors of n sorted ...
分类:
其他好文 时间:
2020-06-29 10:05:07
阅读次数:
60
Given a collection of distinct integers, return all possible permutations. Example: Input: [1,2,3] Output: [ [1,2,3], [1,3,2], [2,1,3], [2,3,1], [3,1, ...
分类:
其他好文 时间:
2020-06-29 09:55:51
阅读次数:
59
选择: 1.(D ) vue 的生命周期,执行顺序争取的是: A. beforeCreate -> init->create->mount->destory B. mount-> init->beforeCreate->create->destory C.beforeCreate->create-> ...
分类:
其他好文 时间:
2020-06-29 00:52:15
阅读次数:
121
Given a collection of integers that might contain duplicates, nums, return all possible subsets (the power set). Note: The solution set must not conta ...
分类:
其他好文 时间:
2020-06-29 00:11:37
阅读次数:
54
逐步完善中……以一个登录接口为例 目录 1、项目目录 2、登录接口和登录用例 3、配置文件 4、run_all 1、项目目录 以之前搭建的aiopms为平台写接口自动化,其中case中放模块和用例,common中放数据库连接信息等,config放邮箱登录信息,logs存放日志文件,report放报告 ...
分类:
编程语言 时间:
2020-06-28 22:50:24
阅读次数:
105
一、设置序列化的原因: 详细见SE的IO流问题: https://www.cnblogs.com/mindzone/p/12752453.html 简单点理解就是对象的身份证号, 对于一些对象被序列之后,类的成员发生了改变,反序列之后无法被识别为此类的实例 所以需要序列ID来校验对象,可以在反序列化 ...
分类:
编程语言 时间:
2020-06-28 22:39:41
阅读次数:
97
1. 内容回顾 1. 昨日问题 1. request.GET(编辑功能) request.GET是取URL里面的参数,和什么请求是没关系的。 2. ORM取数据 类名.objects.all() 类名.objects.get(条件) --> 有且只能找到一个 类名.objects.filter(条件 ...
分类:
其他好文 时间:
2020-06-28 22:34:44
阅读次数:
75
vue是当下非常流行的框架,并且这个趋势还会持续一段时间。最早听说vue,是vue的单页面应用?具体什么单页面应用呢?参考jsp开发,每个页面基本都有对应的jsp文件,浏览器请求时,会从后端加载页面,这是一次http页面的请求过程。而单页面则是类似于ajax请求,url路径没变,只是向前端请求了数据 ...
分类:
其他好文 时间:
2020-06-28 20:21:50
阅读次数:
63