摘要: 总结的6个区别:1.paresInt只能返回整数;2.Number可以转日期类型;3.Number无法转换带有非字数的字符串;4.Number可以转换空串和null;5.parserInt无法识别科学数字;6.parserFloat无法解析16进制的字符串 阅读全文
posted @ 2021-08-29 23:23 wl夏白 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 一键复制文件 阅读全文
posted @ 2021-08-27 21:20 wl夏白 阅读(9818) 评论(0) 推荐(0) 编辑
摘要: 介绍了常用的一些正则表达式的使用,带有例子方便理解 阅读全文
posted @ 2021-08-15 21:21 wl夏白 阅读(110) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/hjj1215/p/17577303.html 阅读全文
posted @ 2024-03-01 16:58 wl夏白 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1,Linux切换到Oracle su - oracle 2,使用sqlplus并以管理员的身份登录 sqlplus / as sysdba 3,开启cbd startup 4,开启pdb alter pluggable database ORA19CPDB open; ORA19CPDB为pdb的 阅读全文
posted @ 2024-02-05 14:39 wl夏白 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 背景 运行1次时,实现其中的几个请求执行多次,每次执行时的参数不同 方式 在要开始循环的请求中通过pm.environment.set('next', pm.info.requestId)将这个请求的id记下来 然后当要循环这个请求的的时候,先改变请求中的变量,然后再通过postman.setNex 阅读全文
posted @ 2023-12-21 11:11 wl夏白 阅读(301) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2023.cnblogs.com/blog/2497500/202311/2497500-20231121113122088-1973018913.png) 阅读全文
posted @ 2023-11-21 11:36 wl夏白 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 创建angular工程时的--createApplication=false改为了--create-application=false 更新前 https://zhuanlan.zhihu.com/p/54075580 更新后 https://angular.cn/cli/new 阅读全文
posted @ 2023-09-01 16:49 wl夏白 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 场景回忆: 本地修改需要退回到之前的版本,打算强制push本地版本覆盖远程版本,但是在git push --force后出现了以下的错误: Fix GitLab error: “you are not allowed to push code to protected branches on thi 阅读全文
posted @ 2021-10-25 20:21 wl夏白 阅读(31) 评论(0) 推荐(0) 编辑
摘要: tsconfig.json 的作⽤ ⽤于标识 TypeScript 项⽬的根路径; ⽤于配置 TypeScript 编译器; ⽤于指定编译的⽂件。 tsconfig.json 重要字段 files - 设置要编译的⽂件的名称; include - 设置需要进⾏编译的⽂件,⽀持路径模式匹配; excl 阅读全文
posted @ 2021-09-11 18:35 wl夏白 阅读(1073) 评论(0) 推荐(0) 编辑
摘要: https://segmentfault.com/a/1190000015264821 1. typeof 查看数据类型的类型 使用 typeof obj; 返回值:"string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" 阅读全文
posted @ 2021-08-30 23:26 wl夏白 阅读(70) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/cosyer/p/7113137.html 1.都可以进行字符串的查找 2.serach()支持正则,indexOf()不支持 3.indexOf()性能更高 结论:字符串查找用indexOf(),正则使用search() 阅读全文
posted @ 2021-08-30 20:36 wl夏白 阅读(461) 评论(0) 推荐(0) 编辑
摘要: 定义 使用关键字enum定义 enum demo{ a, b="c", $c=3, "_1" }; 详解 1.定义枚举的时候,没有赋值,默认从0开始 enum demo{ a, b, c }; console.log(demo.a);//return 0 console.log(demo[1]);/ 阅读全文
posted @ 2021-08-30 00:06 wl夏白 阅读(1155) 评论(0) 推荐(0) 编辑