在Vue.js中,组件可以检测插槽内容何时更改

时间:2016-07-01 14:46:32

标签: javascript html vue.js vue-component

我们在Vue中有一个组件,它是一个框架,缩放到窗口大小,其中包含(在<slot>中)一个元素(通常为<img><canvas>)适合框架并启用平移和缩放该元素。

当元素发生变化时,组件需要做出反应。我们可以看到这样做的唯一方法是父进程在发生时刺激组件,但是如果组件可以自动检测<slot>元素何时发生变化并做出相应反应,则会更好。有没有办法做到这一点?

4 个答案:

答案 0 :(得分:11)

据我所知,Vue没有提供这样做的方法。但是,有两种方法值得考虑。

观看Slot的DOM以进行更改

使用MutationObserver检测<slot>中的DOM何时发生变化。这不需要组件之间的通信。只需在组件的mounted回调期间设置观察者。

以下是一个显示此方法的片段:

Vue.component('container', {
  template: '#container',
  
  data: function() {
  	return { number: 0, observer: null }
  },
  
  mounted: function() {
    // Create the observer (and what to do on changes...)
    this.observer = new MutationObserver(function(mutations) {
      this.number++;
    }.bind(this));
    
    // Setup the observer
    this.observer.observe(
      $(this.$el).find('.content')[0],
      { attributes: true, childList: true, characterData: true, subtree: true }
    );
  },
  
  beforeDestroy: function() {
    // Clean up
    this.observer.disconnect();
  }
});

var app = new Vue({
  el: '#app',

  data: { number: 0 },
  
  mounted: function() {
    //Update the element in the slot every second
    setInterval(function(){ this.number++; }.bind(this), 1000);
  }
});
.content, .container {
  margin: 5px;
  border: 1px solid black;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.13/vue.js"></script>

<template id="container">
  <div class="container">
    I am the container, and I have detected {{ number }} updates.
    <div class="content"><slot></slot></div>
  </div>
</template>

<div id="app">
  
  <container>
    I am the content, and I have been updated {{ number }} times.
  </container>
  
</div>

使用Emit

如果Vue组件负责更改插槽,则最好在发生更改时emit an event。这允许任何其他组件在需要时响应发出的事件。

为此,请使用空的Vue实例作为全局事件总线。任何组件都可以在事件总线上发出/侦听事件。在您的情况下,父组件可以发出“更新内容”事件,子组件可以对其做出反应。

这是一个简单的例子:

// Use an empty Vue instance as an event bus
var bus = new Vue()

Vue.component('container', {
  template: '#container',

  data: function() {
    return { number: 0 }
  },

  methods: {
    increment: function() { this.number++; }
  },
  
  created: function() {
    // listen for the 'updated-content' event and react accordingly
    bus.$on('updated-content', this.increment);
  },
  
  beforeDestroy: function() {
    // Clean up
    bus.$off('updated-content', this.increment);
  }
});

var app = new Vue({
  el: '#app',

  data: { number: 0 },

  mounted: function() {
    //Update the element in the slot every second, 
    //  and emit an "updated-content" event
    setInterval(function(){ 
      this.number++;
      bus.$emit('updated-content');
    }.bind(this), 1000);
  }
});
.content, .container {
  margin: 5px;
  border: 1px solid black;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.13/vue.js"></script>

<template id="container">
  <div class="container">
    I am the container, and I have detected {{ number }} updates.
    <div class="content">
      <slot></slot>
    </div>
  </div>
</template>

<div id="app">

  <container>
    I am the content, and I have been updated {{ number }} times.
  </container>
  
</div>

答案 1 :(得分:1)

据我了解Vue 2+,当广告位内容更改时,应重新渲染组件。在我的情况下,我有一个error-message组件应该隐藏,直到它显示一些插槽内容为止。最初,我将此方法附加到组件的根元素上的v-ifcomputed属性不起作用,Vue在this.$slots上没有任何反应)。

checkForSlotContent() {
    let checkForContent = (hasContent, node) => {
        return hasContent || node.tag || (node.text && node.text.trim());
    }
    return this.$slots.default && this.$slots.default.reduce(checkForContent, false);
},

只要插槽中发生99%的更改(包括添加或删除DOM元素),此方法就可以很好地工作。唯一的例外情况是这样的用法:

<error-message> {{someErrorStringVariable}} </error-message>

这里仅更新了一个文本节点,由于我仍然不清楚的原因,我的方法无法执行。我通过挂钩beforeUpdate()created()来解决此问题,让我留出一个完整的解决方案:

<script>
    export default {
        data() {
            return {
                hasSlotContent: false,
            }
        },
        methods: {
            checkForSlotContent() {
                let checkForContent = (hasContent, node) => {
                    return hasContent || node.tag || (node.text && node.text.trim());
                }
                return this.$slots.default && this.$slots.default.reduce(checkForContent, false);
            },
        },
        beforeUpdate() {
            this.hasSlotContent = this.checkForSlotContent();
        },
        created() {
            this.hasSlotContent = this.checkForSlotContent();
        }
    };
</script>

答案 2 :(得分:1)

还有另一种对插槽更改做出反应的方法。老实说,我发现它更干净,以防万一。对我来说,emit+event-bus 和突变观察都不正确。

采用以下场景:

<some-component>{{someVariable}}</some-component>

在这种情况下,当 someVariable 更改时,一些组件应该做出反应。我在这里要做的是在组件上定义一个 :key,它会在 someVariable 发生变化时强制它重新渲染。

<some-component :key="someVariable">Some text {{someVariable}}</some-component>

亲切的问候 Rozbeh Chiryai Sharahi

答案 3 :(得分:0)

我建议您考虑使用以下技巧:https://codesandbox.io/s/1yn7nn72rl,我曾经看过更改并使用广告位内容来做任何事情。

vuetify VIcon组件的工作原理启发,这个想法是使用一种功能组件,我们在其中的render函数中实现了逻辑。 context对象作为render函数的第二个参数传递。特别是,context对象具有一个data属性(您可以在其中找到属性attrs)和一个children属性,该属性与该插槽相对应(您可以调用具有相同结果的context.slot()函数。

最诚挚的问候