使用github actions部署代码

2021-04-04
阅读 2 分钟
4.9k
最近写了个工具,需要在服务端运行,一开始直接使用transmit上传代码,但是每次更新代码都要同步,而且由于服务器在国外,速度贼慢,所以趁着放假搞了下代码自动部署。

axios访问国外接口

2021-03-14
阅读 1 分钟
7.8k
最近想做一个玩具demo,要访问的api需要使用梯子才可以访问,我本地安装了clashX,可以使用浏览器正常访问该接口,但是运行代码时会访问超时。

angular5 Reactive Form动态表单

2018-04-25
阅读 7 分钟
5.3k
Angular5 Reactive Form 根据最近的使用, 总结一下在ngx中使用reactive form 1. 创建表单 需求: 创建一个带验证的表单, 如果表单验证不通过则提交按钮disabled=true {代码...} {代码...} 2. 自定义验证器 需求: 密码需要格式为数字字母下划线6-12位 参考: Custom validators {代码...} 3. 动态创建表单 需求: 表单增加朋...

CSS中百分比是相对于谁?

2018-04-16
阅读 2 分钟
5.1k
1. 用到百分比的属性: width, height margin, padding top, right, bottom, left transform - translate background-position, background-size 2. containing block 2.1 为什么要知道containing block MDN: The size and position of an element are often impacted by its containing block. Most often, the containi...