let scrollTimer: number = setTimeout(function () {})
// 不能将类型“Timer”分配给类型“number”
通过 cmd + 点击定位,发现setTimeout使用的是 Node.js 下的接口定义
@types/node index.d.ts
word-break: break-all;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
box-orient: vertical;
# 主要type
feat: 增加新功能
fix: 修复bug
# 特殊type
docs: 只改动了文档相关的内容
style: 不影响代码含义的改动,例如去掉空格、改变缩进、增删分号
build: 构造工具的或者外部依赖的改动,例如webpack,npm
refactor: 代码重构时使用
命令提示符cmd
下使用set GOARCH=amd64
set GOOS=linux
go build
Powershell
下使用$Env:GOOS = "linux";
$Env:GOARCH = "amd64"
go build
package main
import (
"fmt"
"io/ioutil"
"log"
"net/http"
"github.com/gin-gonic/gin"
)
// Phone asd
type Phone interface {
call()
}
// MiPhone asd
type MiPhone struct {
}
go env -w GOPROXY=https://goproxy.cn,direct
go mod init api
go get -u github.com/gin-gonic/gin
package main
import (
"fmt"
"github.com/gin-gonic/gin"
)
func main() {
由于github
太慢,把仓库地址修改coding.net
// 修改仓库地址
git remote set-url origin https://xxxx.coding.net/xxx/xx/xx
同步报错
refusing to merge unrelated histories
// 搜索镜像
docker search jenkins
// 拉取镜像
docker pull jenkins
// 安装容器 暴露端口
docker run -itd -p 301:8080 jenkins
// 查看
docker ps
// 进入docker bash
docker exec -it 6966666669666 /bin/bash
// 查看密码
Element.scrollTo({
left: 0,
top: 100,
behavior: 'smooth'
})
#下载阿里yum源2
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
#生成仓库缓存
yum makecache
yum install docker -y