会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
流云君
博客园
首页
新随笔
联系
订阅
管理
随笔 - 22
文章 - 0
评论 - 2
阅读 -
10037
2024年7月25日
条件组合组件--vue3版
摘要:
参考 手把手教你写一个条件组合组件 此随笔是借鉴以上写的vue版,记录一下 组件 前期准备 1.vue3的全套工具 2.element-plus 3.lodash 数据结构 主要是嵌套结构 关键点 在RelationGroup组件内引用本身,注意key值,不能用i,不然删除操作,会从最后删起 组件结
阅读全文
posted @ 2024-07-25 10:47 流云君
阅读(725)
评论(0)
推荐(0)
编辑
2024年1月15日
关于echarts+vue频繁刷新的造成的内存增长问题
摘要: 前言 关于解决echarts+ws多次数据刷新渲染,内存增长溢出的尝试。 记录一下,便于下次使用有参考 方法 关闭echarts动画 tooltip的动画设置为false。(echarts动画会缓存,通过快照可以看出) tooltip: { axisPointer: { animation: fal
阅读全文
posted @ 2024-01-15 10:01 流云君
阅读(1573)
评论(0)
推荐(3)
编辑
2023年5月12日
bcrypt 加密
摘要: bcrypt 加密 引入 npm i bcrypt -S 代码 加密 const bcrypt = require("bcrypt") const salt = bcrypt.genSaltSync(10); const hash = bcrypt.hashSync(password, salt);
阅读全文
posted @ 2023-05-12 17:08 流云君
阅读(12)
评论(0)
推荐(0)
编辑
RSA加密--前端
摘要: 流程 前端js使用公钥进行加密,后端使用私钥进行解密(C#或java语言)。 注意:c#使用xml格式的公钥/私钥 Java,js都是pem格式 格式 xml: <RSAKeyValue><Modulus> xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx </Modulus>
阅读全文
posted @ 2023-05-12 17:02 流云君
阅读(101)
评论(0)
推荐(0)
编辑
react+antd选择框输入
摘要: react+antd选择框输入 const onSearch=(fn,value)=>{ if(value){//这个if无比重要 form.setFieldsValue({"Owner":value}); } } <Select allowClear showSearch onSearch={on
阅读全文
posted @ 2023-05-12 16:42 流云君
阅读(10)
评论(0)
推荐(0)
编辑
2023年3月21日
react+echarts出现“There is a chart instance already initialized on the dom.”
摘要: 写了一个关于echatrs组件,报错dom重复 配置信息从props拿 let chart; useEffect(() => { if (chart) { updateChartView(); }else{ chart = echarts.init(dom.current) updateChartV
阅读全文
posted @ 2023-03-21 17:28 流云君
阅读(314)
评论(0)
推荐(0)
编辑
2023年3月13日
antd5中文设定
摘要: antd5中文设定 import zhCN from "antd/lib/locale/zh_CN" <ConfigProvider locale={zhCN} theme={{ token: { colorPrimary: "#22a6f2", }, }} > 组件 </ConfigProvide
阅读全文
posted @ 2023-03-13 14:24 流云君
阅读(144)
评论(0)
推荐(0)
编辑
2023年3月9日
gh-pages在线演示踩的坑
摘要: git在线演示 1.新建一个gh-pages分支 2.打包好的dist上传到分支里 3.访问:https://【用户名】.github.io/【项目名】/dist ( 会自动访问dist下的index.html ) 坑 打包上传后访问,显示一片空白。报资源404 解决: webpack配置文件,设置
阅读全文
posted @ 2023-03-09 11:44 流云君
阅读(83)
评论(0)
推荐(0)
编辑
2023年3月2日
如何上传你的组件到npm
摘要: 前言 以react为例子 webpack作为打包工具 准备工作 安装node npm上注册账号 https://www.npmjs.com/ 创建要上传组件 新建项目 生成package.json文件 npm init 安装依赖 npm i -D webpack webpack-cli @babel
阅读全文
posted @ 2023-03-02 17:26 流云君
阅读(482)
评论(0)
推荐(0)
编辑
2022年9月14日
记录:idea git push失败问题
摘要: 问题描述: 重复弹出密码登录框,但是push失败 解决,用ssh的方式登录 1.生成ssh 配置用户名 git config --global user.name "tmqq2333" 配置用户邮箱 git config --global user.email "tmqq2333@163.com"
阅读全文
posted @ 2022-09-14 16:07 流云君
阅读(164)
评论(0)
推荐(0)
编辑
下一页
公告
昵称:
流云君
园龄:
4年9个月
粉丝:
1
关注:
0
+加关注
<
2025年3月
>
日
一
二
三
四
五
六
23
24
25
26
27
28
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
1
2
3
4
5
搜索
常用链接
我的随笔
我的评论
我的参与
最新评论
我的标签
随笔分类
antd(2)
js(3)
react(5)
vue(4)
webrtc(2)
Xshell(1)
踩坑(3)
前端(9)
问题(3)
自签证书(1)
组件库(1)
随笔档案
2024年7月(1)
2024年1月(1)
2023年5月(3)
2023年3月(4)
2022年9月(2)
2022年8月(2)
2022年7月(9)
阅读排行榜
1. 记录:excel导入导出js-xlsx,处理合并(1574)
2. 关于echarts+vue频繁刷新的造成的内存增长问题(1573)
3. js文字转语音播放SpeechSynthesisUtterance(1298)
4. react路由权限v6(1233)
5. 条件组合组件--vue3版(725)
评论排行榜
1. Xshell与Xftp安装与使用(2)
推荐排行榜
1. 关于echarts+vue频繁刷新的造成的内存增长问题(3)
最新评论
1. Re:Xshell与Xftp安装与使用
@洛星尘 从窗口进入,可能与服务器有关,我后面没遇到这个问题了...
--流云君
2. Re:Xshell与Xftp安装与使用
您好,想请教一下,如何解决xftp那个“遇到不适当的参数”的问题呢~
--洛星尘
点击右上角即可分享