海mia婊婊想上岸

导航

2021年12月10日

<a-upLoad>连报三错

摘要: [Vue warn]: Invalid prop: custom validator check failed for prop "fileList". [Vue warn]: Invalid prop: custom validator check failed for prop "items". 阅读全文

posted @ 2021-12-10 14:53 海mia婊婊想上岸 阅读(936) 评论(0) 推荐(0) 编辑

2021年10月27日

比较牛批的正则表达式可视化工具

摘要: https://regexper.com/# https://regex101.com/ 阅读全文

posted @ 2021-10-27 17:41 海mia婊婊想上岸 阅读(53) 评论(0) 推荐(0) 编辑

2021年10月19日

antd 下拉框不跟随滚轮滚动

摘要: 下拉框 默认是相对于 body 定位,用 getPopupContainer 设置相对于父级定位 private getPopupContainer() { return (triggerNode: any) => triggerNode.parentNode; } :getPopupContain 阅读全文

posted @ 2021-10-19 10:32 海mia婊婊想上岸 阅读(185) 评论(0) 推荐(0) 编辑

2021年10月18日

antd vue select下拉框设value没有显示对应title却直接显示出value值

摘要: 可能的情况1:select拿到的value值没有能对应的title typeList=[ {"alias1": "虚拟行政区域", "value1": "0" }, {"alias1": "行政区域", "value1": "1" }, {"alias1": "职能部门", "value1": "2 阅读全文

posted @ 2021-10-18 10:48 海mia婊婊想上岸 阅读(2101) 评论(0) 推荐(0) 编辑

2021年9月30日

this.$refs.searchForm.resetFields()不起作用

摘要: https://blog.csdn.net/weixin_42708208/article/details/106081689 阅读全文

posted @ 2021-09-30 14:30 海mia婊婊想上岸 阅读(247) 评论(0) 推荐(0) 编辑

2021年9月24日

多叉树的遍历和查找

摘要: 在key为NodeId的结点的子树中查找一个key为inNodeId的结点 // 传入对象而不是数组 getIsMyChild(rootNode, inNodeId, NodeId) { if (null == rootNode) return null; if (rootNode.key == N 阅读全文

posted @ 2021-09-24 17:56 海mia婊婊想上岸 阅读(274) 评论(0) 推荐(0) 编辑

一个问题产生的n个问题

摘要: 1.怎么设置antd的<a-tree>的展开和关闭? https://www.jianshu.com/p/d104f491b8c9里面看到一句 let {expandedKeys} = this.state 看不懂,去搜发现是js的最新标准es6的解构赋值规则 2.变量的解构赋值 阮一峰ES6:ht 阅读全文

posted @ 2021-09-24 15:49 海mia婊婊想上岸 阅读(42) 评论(0) 推荐(0) 编辑

对象中某元素没有冒号会怎么样

摘要: { key, title: key } 展开为 { key: key , title: key } const expandedKeys = dataList .map(item => { if (item.title.indexOf(value) > -1) { return getParentK 阅读全文

posted @ 2021-09-24 10:05 海mia婊婊想上岸 阅读(17) 评论(0) 推荐(0) 编辑

2021年9月23日

antd vue的a-tree组件怎么让没有子结点的结点不显示展开符号

摘要: gData大概长[{key:xxx,children:[{key:xxx,...}],...},{key:xxx,...},{key:xxx,...},{key:xxx,...}]这样 我首先尝试设置该结点的chileren为null或undefined,但不起效。 最后通过加设了一个isLeaf: 阅读全文

posted @ 2021-09-23 20:48 海mia婊婊想上岸 阅读(1213) 评论(0) 推荐(0) 编辑

2021年9月14日

2021/9/14问题

摘要: 1. js判断字符串是否在数组中 string.indexOf()返回某个指定的字符串值在字符串中首次出现的位置,没有则返回-1 2. 匹配正则表达式 ps:正则表达式不加引号 ① 手机号: contactTel: [{ required: true, pattern: /^1[3456789]\d 阅读全文

posted @ 2021-09-14 15:57 海mia婊婊想上岸 阅读(28) 评论(0) 推荐(0) 编辑