上一页 1 2 3 4 5 6 ··· 16 下一页
摘要: event.stopPropagation(); 阅读全文
posted @ 2023-12-05 10:03 皮豪 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 拿下个月的第一天,减 24小时即可 24小时 = 86400000 毫秒 const maxDate = new Date( new Date(mainDate.value.setMonth(mainDate.value.getMonth() + 1)).setDate( 1 ) - 8640000 阅读全文
posted @ 2023-11-20 09:41 皮豪 阅读(95) 评论(0) 推荐(0) 编辑
摘要: proxy(){ export proxy="http://172.17.32.1:7890" export http_proxy=$proxy export https_proxy=$proxy } no_proxy(){ export proxy="" export http_proxy=$pr 阅读全文
posted @ 2023-11-12 16:04 皮豪 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 接口有什么用?就是存储未实现的方法,作为实现的此方法的结构体的实例的句柄。 type Sayer interface { say() } type Dog struct {} type Cat struct {} func (*Dog) say() { fmt.Println("Woew woew" 阅读全文
posted @ 2023-11-10 10:14 皮豪 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 由于 Value 是值拷贝的,并非引用传递,所以直接改 Value 是达不到更改原切片值的目的的,需要通过 &slice[index] 获取真实的地址 package main import ("fmt") func main(){ slice := []int{10,20,30,40} for i 阅读全文
posted @ 2023-11-05 18:32 皮豪 阅读(89) 评论(0) 推荐(0) 编辑
摘要: JS 高级 学习笔记 JavaScript采用的是词法作用域,函数的作用域基于函数创建的位置。 let g = 1 function a(){ let g = 2 function b() { return g // g = 2 } } JS 函数调用,是放到 ECStack内,使用栈的方式进行调用 阅读全文
posted @ 2023-10-20 16:26 皮豪 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 1.dial tcp 127.0.0.1:3306: connect: connection refused 因为 mysql安装时,的配置有一个关闭网络连接,所以连不上 文件在 /etc/my.cnf.d/mariadb-server.cnf 把这信skip-networking注释了即可 [my 阅读全文
posted @ 2023-09-16 23:14 皮豪 阅读(102) 评论(0) 推荐(0) 编辑
摘要: vi /etc/apk/repositories echo "http://mirrors.aliyun.com/alpine/v3.18/main http://mirrors.aliyun.com/alpine/v3.18/community" > /etc/apk/repositories 阅读全文
posted @ 2023-09-10 10:27 皮豪 阅读(145) 评论(0) 推荐(0) 编辑
摘要: `Ctrl + ,` 进入设置,搜索 `go testFlags` ![image](https://img2023.cnblogs.com/blog/2146100/202308/2146100-20230829233851922-925799478.png) 点击 `Edit in settin 阅读全文
posted @ 2023-08-29 23:40 皮豪 阅读(118) 评论(0) 推荐(0) 编辑
摘要: ![image](https://img2023.cnblogs.com/blog/2146100/202308/2146100-20230829140720437-801303464.png) 阅读全文
posted @ 2023-08-29 14:07 皮豪 阅读(11) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 16 下一页