使用echarts-for-react报错:Cannot read properties of undefined (reading 'disconnect')

结论:ECharts版本太高可能导致这个报错 源码地址 1 2 3 4 5 6 import ReactEcharts from 'echarts-for-react' <ReactEcharts option={} style={{ height: '350px', width: '100%' }} /> 依赖 1 2 3 4 "dependencies": { ... "size-sensor": "^1.0.0" // DOM 元素尺寸监听器,当元素尺...

2023年8月30日 | 2 分钟 | 874 字

浏览器拖拽

mdn 使用WebApi功能实现 好处:这个拖拽是浏览器级别的功能,可以与其他应用交互 小缺陷:样式不能很好自定义,比如拖拽到放置区的鼠标的图标只有4...

2023年8月25日 | 2 分钟 | 641 字

使用certbot申请证书

官方推荐使用snap安装 Unless you have very specific requirements, we kindly suggest that you use the installation instructions for your system found at https://certbot.eff.org/instructions. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37...

2023年7月30日 | 2 分钟 | 632 字 | 最后更新:2023年9月8日
source https://certbot.eff.org/

解决ctrl+shift+f被win11输入法占用

ctrl+shift+f在各大IDE上都是用来做全局搜索的 如果使用中文输入法,有个简繁转换也默认是这个快捷键,导致了快捷键冲突,很不方便,可...

2023年7月29日 | 1 分钟 | 246 字

Egg中获取文件流的时候,抛出异常

在使用Egg作为服务端,上传jfif文件时报了个错 1 ctx.getFileStream() 这次抱着深究源码的态度进行解决问题,进行查看相关关键代码 源码 1 2 3 4 5 6 7 8 9 10 11 12 13...

2023年7月20日 | 3 分钟 | 1077 字