You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/** * 递归使用 call 方式this指向 * @param componentName // 需要找的组件的名称
* @param eventName // 事件名称
* @param params // 需要传递的参数
*/ function broadcast(componentName, eventName, params) { // 循环子节点找到名称一样的子节点 否则 递归 当前子节点
this.$children.map((child) => { if (componentName === child.$options.name) { child.$emit.apply(child, [eventName].concat(params)) } else { broadcast.apply(child, [componentName, eventName].concat(params)) } }) } export default { methods: { /** * 派发 (向上查找) (一个) * @param componentName // 需要找的组件的名称
* @param eventName // 事件名称
* @param params // 需要传递的参数
*/ dispatch(componentName, eventName, params) { let parent = this.$parent || this.$root// $parent 找到最近的父节点 $root 根节点
let { name } = parent.$options // 获取当前组件实例的name
// 如果当前有节点 && 当前没名称 且 当前名称等于需要传进来的名称的时候就去查找当前的节点
// 循环出当前名称的一样的组件实例
while (parent && (!name || name !== componentName)) { parent = parent.$parent if (parent) { name = parent.$options.name } } // 有节点表示当前找到了name一样的实例
if (parent) { parent.$emit.apply(parent, [eventName].concat(params)) } }, /** * 广播 (向下查找) (广播多个) * @param componentName // 需要找的组件的名称
* @param eventName // 事件名称
* @param params // 需要传递的参数
*/ broadcast(componentName, eventName, params) { broadcast.call(this, componentName, eventName, params) } } }
|