相关文章
Android-AR眼镜屏幕显示
Android-AR眼镜
前提:Android手持设备 需要具备DP高清口
1、创建Presentation(双屏异显)
public class MyPresentation extends Presentation {private PreviewSingleBinding binding;private ScanActivity activity;public MyPresentatio…
建站知识
2024/11/29 1:39:31
springboot集成openfeign时如何请求HTTPS接口忽略SSL验证
引入依赖 <dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-openfeign</artifactId><version>3.1.4</version></dependency><dependency><groupId>org.apache.httpcom…
建站知识
2024/11/23 22:07:47
vue如何将对象中属性值为“”,null,undefined的属性去掉,组成一个新对象
在我们前后端联调的过程中,一系列的参数去后端查询接口,为了提升查询速度,前端需要把字段为空“”,null,undefined,参数给去掉,那么我们就可以使用以下方法: function removeEmptyPr…
建站知识
2024/11/25 15:31:31
一些常用的正则(持续更新)
常用正则合集 1、匹配字符串中的所有标签,拆分字符串并且将标签作为单独一项 1、匹配字符串中的所有标签,拆分字符串并且将标签作为单独一项
/(<\/?.?>)/g
splitStringByTags 函数接受一个参数 inputString,然后使用正则表达式/(&l…
建站知识
2024/11/28 9:24:04
docker配置镜像加速后容器和镜像消失
一、问题描述
根据阿里云给docker配置镜像加速器
sudo mkdir -p /etc/docker
sudo tee /etc/docker/daemon.json <<-EOF
{"registry-mirrors": ["https://gt6j98xi.mirror.aliyuncs.com"]
}
EOF
sudo systemctl daemon-reload
sudo systemctl rest…
建站知识
2024/11/28 6:20:17
FastAPI+React全栈开发05 React前端框架概述
Chapter01 Web Development and the FARM Stack
05 The frontend React
FastAPIReact全栈开发05 React前端框架概述
Let’s start with a bit of context here. Perhaps the changes in the world of the web are most visible when we talk about the frontend, the part o…
建站知识
2024/11/22 3:07:45
Vue2手搓级联组件
本文的布局才用了叶落风尘大佬的一片文章,功能是自己加的 源代码 页面部分 <div class"h-100vh grid place-items-center"><div><div class"h-455px flex flex-col border-1px border-solid border-#eee w-885px"><div cl…
建站知识
2024/10/7 22:36:13
[蓝桥杯 2023 省 A] 颜色平衡树:从零开始理解树上莫队 一颗颜色平衡树引发的惨案
十四是一名生物工程的学生,他已经7年没碰过信息学竞赛了,有一天他走在蓝桥上看见了一颗漂亮的颜色平衡树:
[蓝桥杯 2023 省 A] 颜色平衡树 - 洛谷 十四想用暴力解决问题,他想枚举每个节点,每个节点代表…
建站知识
2024/11/28 0:48:33