[TOC]
>[success] # 编写自己的工具类进行父子传递
<a href='https://juejin.im/book/5bc844166fb9a05cd676ebca/section/5bc844166fb9a05cf52af65f'>文章来自AresnTalkingData 前端架构师,iView 作者 发布在掘金网小册中内容启发整理</a>
如果你有能力有钱请你购买原作者文找那个,尊敬每一个原作者是我们应该做的,不要做代码行业的伸手党
感谢这些大佬的文章,本内容是根据大佬的文章二次整理,用更通俗的理解让初学者也能看懂
~~~
1.准备工作,'iview' 作者喜欢在vue结构目录中创建一个lib文件夹,并且在文件夹中创建一个'utils'
文件专门用来写自己的工具方法,结构目录如下:
│ ├── 'lib' //工具包
│ ├── 'tools.js' // 存放和业务无关工具性质的js代码
│ └── 'util.js' //存放和业务相关工具性质的js代码
2.下面将会做这个五个场景父子传递的工具类:
2.1.由一个组件,向上找到最近的指定组件;
2.2.由一个组件,向上找到所有的指定组件;
2.3.由一个组件,向下找到最近的指定组件;
2.4.由一个组件,向下找到所有指定的组件;
2.5.由一个组件,找到指定组件的兄弟组件。
3.注意这次的工具组件传递的查找方法和'dispatch'不同的,这次是找整个组件,而'dispatch' 是吧某个
方法传递
~~~
>[info] ## 由一个组件,向上找到最近的指定组件 -- findComponentUpward
~~~
1.思路:编写这个函数时候,需要的形参分析,根据需要我们是要找到某个组件的最近的指定的父组件,
因此某个组件肯定是参数之一,指定的父组件就是参数之二
2.利用'dispatch' 思想我们需要去递归,一直找到当前组件的父组件,知道找到和我们需要匹配的组件
,因此需要'$parent',和'$options.name'
~~~
>[danger] ##### 在utils 中正式编写
~~~
1.context 参数代表当前起点,也就当前组件的'this',componentName 就是目标组件的,可以理解成当前'this'
向上的某个父组件或者有可能是他的爷爷组件
2.逻辑 先获取当前组件的'$parent' 和 'componentName' 父组件的名称,然后去循环如果他有父组件,并且
组件没有名字或者名字不等于目标的名字,我们就继续递归循环查找,直到找到返回整个对象
3.'iview' 作者的解释:
3.1.第一个参数一般都是传入 this,即当前组件的上下文(实例)。
4.提醒自己一点:在写代码的时候一定要对某些条件做判断,例如下面的代码中的 'if(parent)' 就可以减收不必要
的操作
~~~
~~~
function findComponentUpward (context, componentName) {
let parent = context.$parent;
let name = parent.$options.name;
while (parent && (!name || [componentName].indexOf(name) < 0)) {
parent = parent.$parent
if(parent) {
name = parent.$options.name
}
}
return parent;
}
export { findComponentUpward };
~~~
>[danger] ##### 使用篇章
* 创建一个test-a 父组件
~~~
<!--test-a 组件作为父组件-->
<template>
<test-b></test-b>
</template>
<script>
import testB from './test-b'
export default {
name: "test-a",
components: {
testB
},
methods:{
sayHiB(){
console.log('我是A组件的方法,但是现在被B调用了');
}
}
}
</script>
<style scoped>
</style>
~~~
* 组件B 子组件去使用组件a的方法
~~~
<template>
<div>
组件 B
</div>
</template>
<script>
import {findComponentUpward} from '../../lib/utils'
export default {
name: "test-b",
// 发现一个规律类似这种组件调用 最好是在生命周期时候就注册好
// 不要在点击的时候在触发
// 也可以吧这个放回的对象放进B组件的 data中方便调用
mounted () {
const comA = findComponentUpward(this, 'test-a');
if (comA) {
comA.sayHiB(); // 我是A组件的方法,但是现在被B调用了
}
}
}
</script>
<style scoped>
</style>
~~~
>[info] ## 由一个组件,向上找到所有的指定组件 -- findComponentsUpward
~~~
1.findComponentsUpward 场景递归后续研究 做标记
~~~
>[danger] ##### findComponentsUpward
~~~
// 由一个组件,向上找到所有的指定组件
function findComponentsUpward (context, componentName) {
let parents = [];
const parent = context.$parent;
if (parent) {
if (parent.$options.name === componentName) parents.push(parent);
return parents.concat(findComponentsUpward(parent, componentName));
} else {
return [];
}
}
export { findComponentsUpward };
~~~
>[info] ## 由一个组件,向下找到最近的指定组件 -- findComponentDownward
~~~
1.原理就是找到当前组件的所有子组件,然后递归查找看那个子组件符合我们传入的名字
如果相等就是我们需要的组件
2.这里要说明一个数组的循环,for ...in 和 for ...of,in简单粗暴理解循环对象用的k值
,因此循环数组的时候是脚标,of 是用来循环数组中的内容
~~~
>[danger] ##### findComponentDownward
~~~
1.找到当前组件的所有子组件利用'$children',如果子组件中也没有就去子组件的子组件找
,也就是递归查找,知道找到了 返回对应的子组件
2.这里注意循环数组的循环使用 for ...of
~~~
~~~
function findComponentDownward (context,componentName){
let childrens = context.$children
// 定义一个接受 变量
let children = null;
if(childrens.length>0){
for(const child of childrens){
const name = child.$options.name
if(name == componentName) {
children = child
break;
}else{
children = findComponentDownward(child, componentName)
if (children) break;
}
}
}
return children
}
export { findComponentDownward };
~~~
>[danger] ##### 案例
* 父组件A
~~~
<!--test-a 组件作为父组件-->
<template>
<test-b></test-b>
</template>
<script>
import testB from './test-b'
import {findComponentDownward } from '../../lib/utils'
export default {
name: "test-a",
components: {
testB
},
mounted(){
// 调用子组件方法
const comB = findComponentDownward(this, 'test-b');
if (comB) {
comB.sayHiB(); // 我是B组件的方法,但是现在被A调用了
}
}
}
</script>
<style scoped>
</style>
~~~
* 子组件B
~~~
<template>
<div>
组件 B
</div>
</template>
<script>
export default {
name: "test-b",
methods:{
sayHiB(){
console.log('我是B组件的方法,但是现在被A调用了');
}
}
}
</script>
<style scoped>
</style>
~~~
>[info] ## 由一个组件,向下找到所有的指定组件 -- findComponentsDownward
~~~
1.findComponentsDownward 场景递归后续研究 做标记
~~~
>[danger] ##### findComponentsUpward
~~~
1.后续理解'reduce' 方法
~~~
~~~
// 由一个组件,向下找到所有指定的组件
function findComponentsDownward (context, componentName) {
return context.$children.reduce((components, child) => {
if (child.$options.name === componentName) components.push(child);
const foundChilds = findComponentsDownward(child, componentName);
return components.concat(foundChilds);
}, []);
}
export { findComponentsDownward };
~~~
>[info] ## 找到指定组件的兄弟组件——findBrothersComponents
~~~
~~~
>[danger] ##### findBrothersComponents
~~~
1.这里使用了三个参数,和之前一样钱两个分别是起始组件对象,要找的组件名字,
这里还用了数组方法'findIndex' 用来找到脚标
2.对第三个参数做详细讲解,第三个参数是,是否包含自己,咋一看觉得无法理解,
举个例子,想弹窗这类组件 在一个页面可能会使用多次,但是她们的名字相同,但是
我在对应的兄弟组件肯定是不想包含本身,因此利用了'_uid' 唯一标识做了标记去重
~~~
~~~
function findBrothersComponents (context,componentName,exceptMe = true) {
// 找到符合的子组件名称数组
let res = context.$parent.$children.filter(item =>{
return item.$options.name === componentName;
})
// 找到当前本身组件在数组中的位置
let index = res.findIndex(item =>{
return item._uid === context._uid
})
if (exceptMe) res.splice(index, 1);
return res;
}
export { findBrothersComponents };
~~~
>[danger] ##### 案例说明
* 父组件中同一个组件调用两次
~~~
<!--test-a 组件作为父组件-->
<template>
<div>
<test-b></test-b>
<test-b></test-b>
</div>
</template>
<script>
import testB from './test-b'
export default {
name: "test-a",
components: {
testB
},
}
</script>
<style scoped>
</style>
~~~
* 子组件中兄弟组件默认不包括自己
~~~
<template>
<div>
组件 B
</div>
</template>
<script>
import {findBrothersComponents } from '../../lib/utils'
export default {
name: "test-b",
methods:{
sayHiB(){
console.log('我是B组件的方法,但是现在被A调用了');
}
},
mounted(){
const comB = findBrothersComponents(this, 'test-b');
if (comB) {
console.log(comB);
}
}
}
</script>
<style scoped>
</style>
~~~
- Vue--基础篇章
- Vue -- 介绍
- Vue -- MVVM
- Vue -- 创建Vue实例
- Vue -- 模板语法
- Vue -- 指令用法
- v-cloak -- 遮盖
- v-bind -- 标签属性动态绑定
- v-on -- 绑定事件
- v-model -- 双向数据绑定
- v-for -- 只是循环没那么简单
- 小知识点 -- 计划内属性
- key -- 属性为什么要加
- 案例说明
- v-if/v-show -- 显示隐藏
- v-for 和 v-if 同时使用
- v-pre -- 不渲染大大胡语法
- v-once -- 只渲染一次
- Vue -- class和style绑定
- Vue -- filter 过滤器
- Vue--watch/computed/fun
- watch -- 巧妙利用watch思想
- Vue -- 自定义指令
- Vue -- $方法
- Vue--生命周期
- Vue -- 专属ajax
- Vue -- transition过渡动画
- 前面章节的案例
- 案例 -- 跑马灯效果
- 案例 -- 选项卡内容切换
- 案例-- 筛选商品
- 案例 -- 搜索/删除/更改
- 案例 -- 用computed做多选
- 案例 -- checked 多选
- Vue--组件篇章
- component -- 介绍
- component -- 使用全局组件
- component -- 使用局部组件
- component -- 组件深入
- component -- 组件传值父传子
- component -- 组件传值子传父
- component -- 子传父语法糖拆解
- component -- 父组件操作子组件
- component -- is 动态切换组件
- component -- 用v-if/v-show控制子组件
- component -- 组件切换的动画效果
- component -- slot 插槽
- component -- 插槽2.6
- component -- 组件的生命周期
- component -- 基础组件全局注册
- VueRouter--获取路由参数
- VueRouter -- 介绍路由
- VueRouter -- 安装
- VueRouter -- 使用
- VueRouter--router-link简单参数
- VueRouter--router-link样式问题
- VueRouter--router-view动画效果
- VueRouter -- 匹配优先级
- vueRouter -- 动态路由
- VueRouter -- 命名路由
- VueRouter -- 命名视图
- VueRouter--$router 获取函数
- VueRouter--$route获取参数
- VueRouter--路由嵌套
- VueRouter -- 导航守卫
- VueRouter -- 写在最后
- Vue--模块化方式结构
- webpack--自定义配置
- webpack -- 自定义Vue操作
- VueCli -- 3.0可视化配置
- VueCli -- 3.0 项目目录
- Vue -- 组件升级篇
- Vue -- 组件种类与组件组成
- Vue -- 组件prop、event、slot 技巧
- Vue -- 组件通信(一)
- Vue -- 组件通信(二)
- Vue -- 组件通信(三)
- Vue -- 组件通信(四)
- Vue -- 组件通信(五)
- Vue -- 组件通信(六)
- Vue -- bus非父子组件通信
- Vue -- 封装js插件成vue组件
- vue组件分装 -- 进阶篇
- Vue -- 组件封装splitpane(分割面板)
- UI -- 正式封装
- Vue -- iview 可编辑表格案例
- Ui -- iview 可以同时编辑多行
- Vue -- 了解递归组件
- UI -- 正式使用递归菜单
- Vue -- iview Tree组件
- Vue -- 利用通信仿写一个form验证
- Vue -- 使用自己的Form
- Vue -- Checkbox 组件
- Vue -- CheckboxGroup.vue
- Vue -- Alert 组件
- Vue -- 手动挂载组件
- Vue -- Alert开始封装
- Vue -- 动态表单组件
- Vue -- Vuex组件的状态管理
- Vuex -- 参数使用理解
- Vuex -- state扩展
- Vuex -- getters扩展
- Vuex--mutations扩展
- Vuex -- Action 异步
- Vuex -- plugins插件
- Vuex -- v-model写法
- Vuex -- 更多
- VueCli -- 技巧总结篇
- CLI -- 路由基础
- CLI -- 路由升级篇
- CLI --异步axios
- axios -- 封装axios
- CLI -- 登录写法
- CLI -- 权限
- CLI -- 简单权限
- CLI -- 动态路由加载
- CLI -- 数据性能优化
- ES6 -- 类的概念
- ES6类 -- 基础
- ES6 -- 继承
- ES6 -- 工作实战用类数据管理
- JS -- 适配器模式
- ES7 -- 装饰器(Decorator)
- 装饰器 -- 装饰器修饰类
- 装饰器--修饰类方法(知识扩展)
- 装饰器 -- 装饰器修饰类中的方法
- 装饰器 -- 执行顺序
- Reflect -- es6 自带版本
- Reflect -- reflect-metadata 版本
- 实战 -- 验证篇章(基础)
- 验证篇章 -- 搭建和目录
- 验证篇章 -- 创建基本模板
- 验证篇章 -- 使用
- 实战 -- 更新模型(为了迎合ui升级)
- 实战 -- 模型与接口对接
- TypeSprict -- 基础篇章
- TS-- 搭建(一)webpack版本
- TS -- 搭建(二)直接使用
- TS -- 基础类型
- TS -- 枚举类型
- TS -- Symbol
- TS -- interface 接口
- TS -- 函数
- TS -- 泛型
- TS -- 类
- TS -- 类型推论和兼容
- TS -- 高级类型(一)
- TS -- 高级类型(二)
- TS -- 关于模块解析
- TS -- 声明合并
- TS -- 混入
- Vue -- TS项目模拟
- TS -- vue和以前代码对比
- TS -- vue简单案例上手
- Vue -- 简单弄懂VueRouter过程
- VueRouter -- 实现简单Router
- Vue-- 原理2.x源码简单理解
- 了解 -- 简单的响应式工作原理
- 准备工作 -- 了解发布订阅和观察者模式
- 了解 -- 响应式工作原理(一)
- 了解 -- 响应式工作原理(二)
- 手写 -- 简单的vue数据响应(一)
- 手写 -- 简单的vue数据响应(二)
- 模板引擎可以做的
- 了解 -- 虚拟DOM
- 虚拟dom -- 使用Snabbdom
- 阅读 -- Snabbdom
- 分析snabbdom源码 -- h函数
- 分析snabbdom -- init 方法
- init 方法 -- patch方法分析(一)
- init 方法 -- patch方法分析(二)
- init方法 -- patch方法分析(三)
- 手写 -- 简单的虚拟dom渲染
- 函数表达解析 - h 和 create-element
- dom操作 -- patch.js
- Vue -- 完成一个minVue
- minVue -- 打包入口
- Vue -- new实例做了什么
- Vue -- $mount 模板编译阶段
- 模板编译 -- 分析入口
- 模板编译 -- 分析模板转译
- Vue -- mountComponent 挂载阶段
- 挂载阶段 -- vm._render()
- 挂载阶段 -- vnode
- 备份章节
- Vue -- Nuxt.js
- Vue3 -- 学习
- Vue3.x --基本功能快速预览
- Vue3.x -- createApp
- Vue3.x -- 生命周期
- Vue3.x -- 组件
- vue3.x -- 异步组件???
- vue3.x -- Teleport???
- vue3.x -- 动画章节 ??
- vue3.x -- 自定义指令 ???
- 深入响应性原理 ???
- vue3.x -- Option API VS Composition API
- Vue3.x -- 使用set up
- Vue3.x -- 响应性API
- 其他 Api 使用
- 计算属性和监听属性
- 生命周期
- 小的案例(一)
- 小的案例(二)-- 泛型
- Vue2.x => Vue3.x 导读
- v-for 中的 Ref 数组 -- 非兼容
- 异步组件
- attribute 强制行为 -- 非兼容
- $attrs 包括 class & style -- 非兼容
- $children -- 移除
- 自定义指令 -- 非兼容
- 自定义元素交互 -- 非兼容
- Data选项 -- 非兼容
- emits Option -- 新增
- 事件 API -- 非兼容
- 过滤器 -- 移除
- 片段 -- 新增
- 函数式组件 -- 非兼容
- 全局 API -- 非兼容
- 全局 API Treeshaking -- 非兼容
- 内联模板 Attribute -- 非兼容
- key attribute -- 非兼容
- 按键修饰符 -- 非兼容
- 移除 $listeners 和 v-on.native -- 非兼容
- 在 prop 的默认函数中访问 this -- ??
- 组件使用 v-model -- 非兼容
- 渲染函数 API -- ??
- Slot 统一 ??
- 过渡的 class 名更改 ???
- Transition Group 根元素 -- ??
- v-if 与 v-for 的优先级对比 -- 非兼容
- v-bind 合并行为 非兼容
- 监听数组 -- 非兼容