摘要:
..跳过安装docker教程,直接开始 一.容器镜像加速 拉取镜像速度太慢,使用阿里云的镜像加速 地址:https://cr.console.aliyun.com/cn-shanghai/instances/mirrors 找到容器镜像加速,按操作文档cv重启docker即可 二.镜像仓库/下载镜像 阅读全文
摘要:
传入图片的base64即可。 function clearblankimg(imgData){ var img = new Image(); //创建图片对象 img.src = imgData; img.onload = function() { var c = document.createEl 阅读全文
摘要:
初始化画布的时候把preserveObjectStacking的属性改成true,默认是false this.canvas = new fabric.Canvas('mycanvas',{ preserveObjectStacking: true }); 其它 【Fabric.js 元素被遮挡的部分 阅读全文
摘要:
用springboot起了个websocket服务端,有时候客户端发来的消息过长,无法接收完整,需要进行额外的处理 下面是处理的例子: @ServerEndpoint("/websocket") public class WebSocket { @OnMessage public void onMe 阅读全文
摘要:
新建一个video标签,设置大小,ref命名 <video ref="video" autoplay width="700" height="500" class="videoElement" ></video> video获取摄像头内容 可以这么写,没有回调提示 查看代码 // video标签获取 阅读全文
摘要:
创建一个注解,用来校验身份 @Target({ElementType.TYPE,ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) public @interface AuthUser { // int user(); // 管理员 // 阅读全文
摘要:
使用正则方式提取文本中间内容 获取文本中间(单次) 参数1:文本 参数2:文本前 参数3:文本后 返回一个String public static String getSubString(String text, String left, String right) { String result 阅读全文
摘要:
_remote.repositories的作用是当maven本地仓库缓存了jar/pom的情况下修改了maven的配置文件(settings.xml)后依然会去远程仓库获取 解决方法: 删除对应仓库中的_remote.repositories文件 删除脚本代码: set REPOSITORY_PAT 阅读全文
摘要:
Yum基本 1.查看软件列表 yum list 2.安装软件 yum install xxx 3.删除 yum remove xxx 阅读全文
摘要:
导入包 java8的 import java.io.IOException; import static java.nio.file.Paths.*; import static java.nio.file.Files.*; 调用 System.out.println(new String(read 阅读全文