默认的仓库Docker的官方仓库Docker Hub Registry Docker官方仓库的速度会比较慢,可以配一个官方的中国加速镜像 方法是:修改 /etc/docker/daemon.json 加上如下的键值: { "registry-mirrors": ["https://registry. ...
分类:
移动开发 时间:
2021-04-24 13:25:57
阅读次数:
0
准备工作: npm install --save html2canvas 在需要的组件中引入 import html2canvas from "html2canvas" 需要生成的图片所在的div 要添加<div ref="imageWrapper">.... </div> 方法一:生成blob文件 ...
分类:
Web程序 时间:
2021-04-24 11:59:51
阅读次数:
0
typeid操作符可以用来获取一个类型/表达式的名称: #include <iostream> #include <typeinfo> using namespace std; int main() { std::cout << typeid(int).name() << std::endl; re ...
分类:
其他好文 时间:
2021-04-23 12:05:50
阅读次数:
0
初识finally finally子句中的代码是最后执行的,并且是一定会执行的,即使try语句块中的代码出现了异常。 finally子句必须和try一起出现,不能单独使用。执行顺序:try→finally→return。 finally应用场景。 通常在finally语句块中完成资源的释放/关闭。 ...
分类:
其他好文 时间:
2021-04-22 16:08:18
阅读次数:
0
Simple explain: In ES2018 When the catch method is called with argument onRejected, the following steps are taken: Let promise be the this value. Retu ...
分类:
编程语言 时间:
2021-04-22 16:05:11
阅读次数:
0
Toady I’m gonna try to add a key for 2017 Range Rover with Xhorse VVDI Key Tool Plus on Bench. Tools A Land Rover KVM module chip VVDI Key Tool Plus A ...
分类:
其他好文 时间:
2021-04-22 15:45:09
阅读次数:
0
There is no tracking information for the current branch. Please specify which branch you want to merge with. See git-pull(1) for details. git pull <re ...
分类:
其他好文 时间:
2021-04-22 15:28:20
阅读次数:
0
单链表 单链表中节点的定义 typedef struct LNode{ int data;//数据域 struct LNode *next;//定义一个同类型的指针,指向该节点的后继节点 }LNode, *Linklist; LNode是一个数据节点,而单链表是用指针将许多数据节点连接起来的一个线性 ...
分类:
其他好文 时间:
2021-04-22 15:20:13
阅读次数:
0
4.20JavaCheckedException已检查异常 CheckedException异常特点 RuntimeException是在运行是才会发生的异常 所有不是RuntimeException的异常,统称为Checked Exception 在编译时就必须做出处理,否则无法通过编译 举例: ...
分类:
编程语言 时间:
2021-04-22 15:17:04
阅读次数:
0
from pynput.keyboard import Controller, Key, Listener # 监听按压 def on_press(key): try: print("正在按压:", format(key.char)) except AttributeError: print("正在 ...
分类:
其他好文 时间:
2021-04-21 12:38:44
阅读次数:
0