一、URL的概念 统一资源定位符(或称统一资源定位器/定位地址、URL地址等,英语:Uniform Resource Locator,常缩写为URL),有时也被俗称为网页地址(网址)。如同在网络上的门牌,是因特网上标准的资源的地址(Address)。 二、URL的格式 2.1 标准格式 协议类型:[ ...
分类:
Web程序 时间:
2020-07-05 00:26:37
阅读次数:
96
一、问题描述最近在开发 html2canvas 的时候,突然发现,html2canvas在IOS13.4.1系统中调用失败。后马上去github上查看是否有同道中人遇到类似问题。 参考链接:https://github.com/niklasvh/html2canvas/issues/2229 二、解 ...
分类:
移动开发 时间:
2020-07-04 22:39:49
阅读次数:
495
在app.js中配置跨域请求//设置允许跨域访问该服务.app.use((req,res,next)=>{res.set({‘Access-Control-Allow-Credentials‘:true,‘Access-Control-Max-Age‘:1728000,‘Access-Control-Allow-Origin‘:req.headers.origin||‘*‘,‘Access-
分类:
其他好文 时间:
2020-07-04 20:43:21
阅读次数:
77
HDFS基本操作 hdfs dfsadmin查看命令 hdfs基本操作 查看目录 hdfs dfs -ls/ [-d] [-h] [-r] 大写 -d:将path作为一个普通文件输出文件信息 -h格式化输出文件及目录信息 -r递归列出目录下的内容 新建文件 创建 递归创建 hdfs dfs -mkd ...
分类:
其他好文 时间:
2020-07-04 17:09:04
阅读次数:
109
<el-upload class="upload-demo" ref="upload" :action="uploadURL+'/customer/excel'" //后台接口(接受上传的文件并做后端的逻辑处理) :headers="headers" accept=".xlsx,.xls" // 限 ...
分类:
其他好文 时间:
2020-07-04 17:01:24
阅读次数:
127
启动集群及监控 进入目录 cd /usr/local/hadoop-2.6.5/sbin/ 启动整个集群组件 ./start-dfs.sh 启动yarn集群 ./start-yarn.sh 启动日志服务 ./mr-jobhistory-daemon.sh start historyserver 查看 ...
分类:
其他好文 时间:
2020-07-04 16:57:27
阅读次数:
64
什么是热部署 应用正在运行的时候升级功能,不需要重新启动应用 对于Java应用程序来说,热部署就是在运行时更新Java类文件 好处:不需要重新手工启动应用,提高本地开发效率 常见热部署 jrebel Spring Loaded spring-boot-devtools 步骤 pom文件添加依赖包 < ...
分类:
编程语言 时间:
2020-07-04 15:29:55
阅读次数:
78
nginx配置 ytt.conf server { listen 80; server_name ytt.haimait.com; location / { index index.html index.htm; root /home/work/go/src/linkbook.com/yttAdmi ...
分类:
其他好文 时间:
2020-07-04 15:17:24
阅读次数:
89
报错自查# 1、 HttpConnectionPool: # 原因: 1、短时间内发起了高频的请求导致IP被禁 # 2、http连接池中的连接资源被耗尽 # 解决: # 1、 使用代理服务器 # 2、headers中加入 Connection: 'close'# 2、代理:代理服务器,可以接受请求将... ...
分类:
其他好文 时间:
2020-07-04 15:01:01
阅读次数:
59
在执行 pip install 时遇到错误:ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output. ...
分类:
编程语言 时间:
2020-07-04 13:51:56
阅读次数:
525