2022年8月9日

摘要: Java的数据类型分为两大类: 基本类型 引用类型 八大基本数据类型(primitive type) //整数 int num1 = 10; //最常用 byte num2 = 20; //字节范围 -128~127 byte num2 = 200; 就会报错 short num3 = 30; lo 阅读全文
posted @ 2022-08-09 22:42 零1111 阅读(69) 评论(0) 推荐(0) 编辑

2022年8月8日

摘要: 1.新建 Hello.java 文件 2.编写代码 public class Hello{ public static void main(String[] args){ System.out.print("hello,world"); } } 3.打开cmd,编译文件,生成class文件 命令: 阅读全文
posted @ 2022-08-08 22:11 零1111 阅读(24) 评论(0) 推荐(0) 编辑

2022年8月3日

摘要: 常用的Dos命令 E: //切换到E盘 dir //查看当前目录下的所有文件 cd //切换目录 cd .. //返回上一级 cls (clear) //清理屏幕 exit //推出终端 ipconfig //查看电脑的ip # 打开应用 calc //计算器 mspaint //绘图 notepa 阅读全文
posted @ 2022-08-03 22:52 零1111 阅读(30) 评论(0) 推荐(0) 编辑

2022年8月2日

摘要: 正确格式 错误格式 请求方法 this.axios.get("api/xxx/xxx",{params:this.filter,responseType:'blob'})//这里的传递要加responseType:'blob'指定类型,后端不需要处理这个类型,只需要传过去就行 下载文件 .then( 阅读全文
posted @ 2022-08-02 14:26 零1111 阅读(1366) 评论(0) 推荐(0) 编辑

2022年7月26日

摘要: svg 1.阮一峰 https://www.ruanyifeng.com/blog/2018/08/svg.html grid 1.https://zhuanlan.zhihu.com/p/256353171 阅读全文
posted @ 2022-07-26 15:33 零1111 阅读(9) 评论(0) 推荐(0) 编辑
 
摘要: 1.修改用户 https://www.cnblogs.com/birdy-silhouette/p/15560161.html 2.提交规范 https://www.cnblogs.com/dkplus/p/8426964.html 阅读全文
posted @ 2022-07-26 15:30 零1111 阅读(19) 评论(0) 推荐(0) 编辑
 
摘要: 微前端 1.qiankun https://qiankun.umijs.org/zh/guide 2.micro-app https://zeroing.jd.com/docs.html#/ 加密 1.https://www.jianshu.com/p/27e10f3202f0 拖拽 http:// 阅读全文
posted @ 2022-07-26 15:29 零1111 阅读(28) 评论(0) 推荐(0) 编辑
 
摘要: v3官网 https://staging-cn.vuejs.org/ UI库 1.naive UI https://www.naiveui.com/zh-CN/os-theme/components/button 2.element plus https://element-plus.gitee.i 阅读全文
posted @ 2022-07-26 15:27 零1111 阅读(61) 评论(0) 推荐(0) 编辑

2022年4月17日

摘要: reactive.js 相当于Observe import Dep from './dep'; // 简单实现 默认传入的都是对象(假装typeof 出来的都是对象 没有数组) export function reactive(data){ if(typeof data 'object'){ Obj 阅读全文
posted @ 2022-04-17 22:55 零1111 阅读(183) 评论(0) 推荐(0) 编辑

2022年4月16日

摘要: /** * 随机生成uuid * */ var uuid = function () { var d = new Date().getTime(); if (window.performance && typeof window.performance.now "function") { d += 阅读全文
posted @ 2022-04-16 08:52 零1111 阅读(29) 评论(0) 推荐(0) 编辑