一:Cypress简介 随便着Web应用项目的不断发展,测试也要不断发展,Cypress是为现代网络打造的,基于JavaScript语言的一种前端自动化测试工具,测试也是如此,对浏览器中运行的所有内容进行快速,轻松和可靠的测试。Cypress是自集成的,它提供了一套完整的端到端的测试体验,正如官网上 ...
分类:
其他好文 时间:
2020-06-18 19:58:20
阅读次数:
95
注意:首先安装JWT程序包 using System;using System.Collections.Generic;using System.Linq;using System.Web; using JWT;using JWT.Algorithms; //加密算法using JWT.Builde ...
分类:
其他好文 时间:
2020-06-18 16:04:10
阅读次数:
75
1. 理解函数编程 把函数理解成一个功能的单元,一个大的功能,可以有若干不同的小功能单元组成。 把大的需要,拆成小的功能。 把注意力集中在要做什么,然后如何精确的得到自己要做的。 2. 使用Func<> 示例: Func<int, int> f = x => x + 1; Func<int, int ...
分类:
其他好文 时间:
2020-06-17 20:36:30
阅读次数:
56
using Newtonsoft.Json; using Newtonsoft.Json.Converters; using Newtonsoft.Json.Linq; using System.Collections.Generic; using System.Data; namespace Co ...
分类:
Web程序 时间:
2020-06-17 12:38:41
阅读次数:
85
JavaScript 中的对象分类 我们可以把对象分为以下的几类。 宿主对象(host Objects):由JavaScript 宿主环境提供的对象,它们的行为完全由宿主环境决定。 宿主对象千奇百怪,前端最熟悉的就是浏览器环境里面的宿主了。在浏览器里面,我们都知道全局对象是 window,windo ...
分类:
编程语言 时间:
2020-06-17 11:18:01
阅读次数:
69
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Data; namespace MSCTool { p ...
分类:
编程语言 时间:
2020-06-16 23:16:15
阅读次数:
102
一:服务器监听配置 1:启动与关闭监听进程 [oracle@oracle root]$ lsnrctl start [oracle@oracle root]$ lsnrctl stop 2:增加新的监听器 方法一: [root@oracle ~]# xhost + [root@oracle ~]# ...
分类:
数据库 时间:
2020-06-16 20:31:31
阅读次数:
70
https://www.cnblogs.com/dream-game/p/5532506.html using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.T... ...
1. JSON 格式 对象格式 {"name":"JSON","address":"北京市西城区","age":25}//JSON的对象格式的字符串 对象数组格式 [{"name":"JSON","address":"北京市西城区","age":25},{"name":"JSON","address ...
分类:
Web程序 时间:
2020-06-15 23:06:38
阅读次数:
75
第1关:继承 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace K1 { public abstr ...