如何从其他组件的事件监听器($ on)调用此组件方法?

时间:2017-02-20 17:52:37

标签: javascript vue.js vuejs2 vue-component

我在这里阅读了非父母与子女的沟通https://vuejs.org/v2/guide/components.html#Non-Parent-Child-Communication。听取公交活动的想法很明确。

但目前还不清楚如何从总线监听器调用其他组件的方法。 例如,如何从 eventHub。$ on('lst:additem',function()调用 lst.additem2()? 看来这个有eventHub上下文(基于 console.log(此。$ data)结果)。

有我的例子

Vue.component('lst', {
template: `
   <ul>
     <li v-for="(item, index) in items" :good='item' :key="item.id">
       <item :it='item' :index="index" ></item>
     </li>
   </ul>`,
created: function () {
  this.eventHub.$on('lst:additem', function(d) { 
    console.log( d );
    console.log( this.$data.tip );
    // this.additem2(d); this won't work :(
  });
},
methods: {
  additem2 : function(newitem) {
    console.log( '...here '+newitem.weight );
    this.items.push( newitem );
    console.log( 'item added' );
  }
}

更多关于JSFiddle https://jsfiddle.net/0mx8mtcj/13/

1 个答案:

答案 0 :(得分:1)

当你在听的时候:

  this.eventHub.$on('lst:additem', function(d) { 
    // `this` here refers to the bus instance
  });

所以只需保存组件的引用:

var self = this;
this.eventHub.$on('lst:additem', function(d) { 
  self.additem2(d);
});