vue-组件传值

vue组件传值是项目开发中必备的功能点,本文将介绍一些常用的组件传值方法,并给出相应的示例。
前提
搭建项目,本文示例是在vue脚手架中完成的,具体如下:

1. 安装node
2. 全局安装vue脚手架,npm install --global vue-cli
3. 新建项目,vue init webpack 项目名
4. 完成之后进入对应目录,启动项目即可
  1. 父传子之props
// father.vue
<template>
  <div>
    <h1>我是父亲辈</h1>
    <Child :msg = "msg"/>
  </div>
</template>

<script>
import Child from './child'
export default {
  components: { Child }, 
  data () {
    return {
      msg: 'Welcome child',
    }
  }
}
</script>

// child.vue
<template>
  <div>
    我是孩子辈,父亲传给我的话是: {{ msg }}
  </div>
</template>

<script>
export default {
  props: ['msg']
}
</script>

结果展示如下:
props父传子结果展示
  1. 子传父之$emit
// father.vue
<template>
  <div>
    <h1>我是父亲辈,孩子给我传的话是:{{ msg }}</h1>
    <Child @sendFromChild="sendFromChild"/>
  </div>
</template>

<script>
import Child from './child'
export default {
  components: { Child },
  data () {
    return {
      msg: ''
    }
  },
  methods: {
    sendFromChild (msg) {
      this.msg = msg
    }
  }
}
</script>


// child.vue
<template>
  <div>
    我是孩子辈 <button @click="sendMsg">点击我向父亲传话</button>
  </div>
</template>

<script>
export default {
  methods: {
    sendMsg () {
      this.$emit('sendFromChild', 'I am child')
    }
  }
}
</script>
点击按钮后的结果展示
  1. 兄弟之间通信parent/root
    兄弟之间通信,可以通过共同的父辈或祖先搭桥。并结合emit,on。已parent为例:
// father.vue
<template>
  <div>
    <h1>我是父亲辈</h1>
    <Child1 />
    <Child2 />
  </div>
</template>

<script>
import Child1 from './child1'
import Child2 from './child2'

export default {
  components: { Child1, Child2 }
}
</script>

// child1.vue
<template>
  <div>
    我是孩子1 <button @click="sendMsg">点击我向孩子2传话</button>
  </div>
</template>

<script>
export default {
  methods: {
    sendMsg () {
      this.$parent.$emit('sendFromBrother', 'Hello, i am child1')
    }
  }
}
</script>

// child2.vue
<template>
  <div>
    我是孩子2, 我的兄弟给我传话了:{{ msg }}
  </div>
</template>

<script>
export default {
  data () {
    return {
      msg: ''
    }
  },
  mounted () {
    this.$parent.$on('sendFromBrother', (value) => {
      this.msg = value
    })
  }
}
</script>
点击按钮后效果
  1. 父组件通过$children访问子组件实现父子通信。
// father.vue
<template>
  <div>
    <h1>我是父亲辈, 我可以拿到孩子的msg属性: {{ msg }}</h1>
    <Child1 />
  </div>
</template>

<script>
import Child1 from './child1'

export default {
  components: { Child1 },
  data () {
    return {
      msg: ''
    }
  },
  mounted () {
    this.msg = this.$children[0].msg
  }
}
</script>

// child.vue
<template>
  <div>
    我是孩子,我有个属性msg为: {{ msg }}
  </div>
</template>

<script>
export default {
  data () {
    return {
      msg: 'This is a message'
    }
  }
}
</script>
结果展示
  1. 获取子节点引用refs
// father.vye
<template>
  <div>
    <h1>我是父亲辈, 我可以拿到孩子的msg属性:{{ msg }}</h1>
    <Child1 ref="child" />
  </div>
</template>

<script>
import Child1 from './child1'

export default {
  components: { Child1 },
  data () {
    return {
      msg: ''
    }
  },
  mounted () {
    this.msg = this.$refs.child.msg
  }
}
</script>

// child.vue
<template>
  <div>
    我是孩子, 我有个msg属性,值为:{{ msg }}
  </div>
</template>

<script>
export default {
  data () {
    return {
      msg: 'This is a message'
    }
  }
}
</script>
结果展示
  1. 任意两个组件传值之事件总线
// bus.js
// Bus:事件派发、监听和回调管理 
class Bus {
  constructor() {
    this.callbacks = {}
  }
  $on(name, fn) {
    this.callbacks[name] = this.callbacks[name] || []
    this.callbacks[name].push(fn)
  }
  $emit(name, args) {
    if (this.callbacks[name]) {
      this.callbacks[name].forEach(cb => cb(args))
    }
  }
}

export default Bus

// main.js 中引入bus,并注入到vue中
import Vue from 'vue'
import App from './App'
import router from './router'
import Bus from './bus' // 引入

Vue.config.productionTip = false
Vue.prototype.$bus = new Bus() // 注入

new Vue({
  el: '#app',
  router,
  components: { App },
  template: '<App/>'
})

// father.vue
<template>
  <div>
    <h1>我是父亲辈</h1>
    <Child1 />
    <Child2 />
  </div>
</template>

<script>
import Child1 from './child1'
import Child2 from './child2'

export default {
  components: { Child1, Child2 }
}
</script>

// child1.vue
<template>
  <div>
    我是孩子1 <button @click="sendMsg">点击我向孩子2传话</button>
  </div>
</template>

<script>
export default {
  methods: {
    sendMsg () {
      this.$bus.$emit('sendFromBrother', 'Hello, i am child1')
    }
  }
}
</script>

// child2.vue
<template>
  <div>
    我是孩子2, 我的兄弟给我传话了:{{ msg }}
  </div>
</template>

<script>
export default {
  data () {
    return {
      msg: ''
    }
  },
  mounted () {
    this.$bus.$on('sendFromBrother', (value) => {
      this.msg = value
    })
  }
}
</script>
image.png
  1. 任意两个组件传值之vuex
    vuex主要创建唯一的全局数据管理者store,通过它管理数据并通知组件状态变更,后面文章会详细讲述,此处不赘述
  2. attrs/listeners
    包含了父作用域中不作为 prop 被识别 (且获取) 的特性绑定 ( class 和 style 除外
// father.vue
<template>
  <div>
    <h1>我是父亲辈, {{msg}}</h1>
    <Child :msg="msg" foo="foo" @updateMsg="updateMsg"  />
  </div>
</template>

<script>
import Child from './child'

export default {
  components: { Child },
  data () {
    return {
      msg: 'this is a meaasge'
    }
  },
  methods: {
    updateMsg () {
      this.msg = 'updated message'
    }
  }
}
</script>

// child.vue
<template>
  <div>
   <h3>我是孩子辈</h3>
   <div>我从父亲拿到的数据{{foo}}</div>
   <GrandSon bar="bar" v-bind="$attrs" v-on="$listeners" />
  </div>
</template>

<script>
import GrandSon from './grandSon'
export default {
  components: { GrandSon },
  props: ['foo']
}
</script>

// grandSon.vue
<template>
  <div>
   <h5>我是孙子辈</h5>
   <div>我拿到的$attrs数据有:{{$attrs}}</div>
   <button @click="changeMsg">点击改变msg</button>
  </div>
</template>

<script>
export default {
  methods: {
    changeMsg () {
      console.log(this.$listeners, '$listeners')
    this.$emit('updateMsg')
    }
  }
}
</script>
初始状态

点击按钮后状态
  1. 祖先和后代传值provide/inject
// father.vue
<template>
  <div>
    <h1>我是父亲辈</h1>
    <Child />
  </div>
</template>

<script>
import Child from './child.vue'

export default {
  components: { Child },
  provide () {
    return {msg: 'msg from father'}
  }
}
</script>

// child.vue
<template>
  <div>
   <h3>我是孩子辈</h3>
   <GrandSon />
  </div>
</template>

<script>
import GrandSon from './grandSon'
export default {
  components: { GrandSon }
}
</script>

//grandSon.vue
<template>
  <div>
   <h5>我是孙子辈</h5>
   <div>我拿到祖先的值: {{msg}}</div>
  </div>
</template>

<script>
export default {
  inject: ['msg']
}
</script>
结果展示

总结
上面介绍了9种组件之间传值的方法,下面简单的总结一下。
1.父向子传值

  • props
  1. 子向父传值
  • $emit
  • ref
  • children
  1. 兄弟之间传值
  • $parent
  • $root
  • $bus
  1. 祖孙之间传值
  • attrs/listeners
  • provide/inject
  1. 任意组件传值
  • vuex
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,098评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,213评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,960评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,519评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,512评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,533评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,914评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,574评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,804评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,563评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,644评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,350评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,933评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,908评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,146评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,847评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,361评论 2 342

推荐阅读更多精彩内容