nodejs读取图片返回给浏览器显示
请求头说明
在http响应里面有几个重要的东西,Content-Type 说明文件渲染MIME类型,这是我们本文的相关处理关键。
常用的MIME类型
{
"css": "text/css",
"gif": "image/gif",
"html": "text/html",
"ico": "image/x-i...
wget扒站
$ wget -r -np -nd http://example.com/packages/
这条命令可以下载 http://example.com 网站上 packages 目录中的所有文件。其中,-np 的作用是不遍历父目录,-nd 表示不在本机重新创建目录结构。
$ wget -r -np -nd -accept=iso http...
js调用后置摄像头拍照(若无则前置)
<video id="video" width="2100" style="display:none;" height="2800" autoplay></video>
&nbs...
视频上传到阿里云oss
import OSS from 'ali-oss'
data() {
return {
name: '录视频',
mediaRecorder: '', // mediarecorder对象
recorderFile: '', // 视频blob文件
stopRecordCallback: '',
mediaStream: '', // 媒体流
...
node接收blob文件
上传base64的
// base64转文件
function dataURLtoFile(dataurl, filename)&nbs...
Vue图片懒加载指令
directive/imgLazy.js
import baseImg from '@/assets/logo.png' // 创建一个监听器 let observer = new Intersect...
webRTC中的coturn服务安装及常见问题
https://blog.csdn.net/qq_35432904/article/details/103808345
cloudreve后台运行
# 创建配置文件
vim /usr/lib/systemd/system/cloudreve.service 或者/etc/systemd/system/cloudreve.service
[Unit]
Description=Cloudreve
Documentation=https://docs.cloudreve....
FRP内网穿透及远程桌面配置
frps:
[common]
bind_port = 7000
dashboard_port = 7500
# dashboard 用户名密码,默认都为 admin
dashboard_user = admin
dashboard_pwd = admin
frpc.ini:
[common]
server_addr = 1.2....
frp的被阻断
login to server failed: EOF
那么如何解决login to server failed: EOF的问题呢?
其实看了源代码就知道了,原来frp在v0.25.0版本后增加了一个客户端选项,支持了tls传输,也就是传说中的非对称加密,原来在frps初始...