确保同一组件的多个实例具有非共享状态 [英] Ensure multiple instances of the same component have non-shared state

查看:33
本文介绍了确保同一组件的多个实例具有非共享状态的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个应用程序,其中有一个显示值的计数器和一个可以增加该值的按钮.

我从头开始使用

如何添加具有自己状态的同一组件的单独实例?

这是 webpackbin 上的代码:

I have an app in which I have a counter which shows a value, and a button that can increment that value.

I used simple state management from scratch as the docs suggest.

I can add counters to this list with an 'Add Counter' button so that I have multiple counters on the page.

Despite each instance of my counter component having a separate key in the parent component (as per the docs), each instance of the counter shares the same value:

How can I add a separate instance of the same component that has its own state?

Here is the code on webpackbin: http://www.webpackbin.com/41hjaNLXM

Code:

App.vue

<template>
  <div id="app">
    <counter v-for="n in state.countersAmount" :key="n"></counter>
    <button v-on:click="addCounter">Add a Counter</button>
  </div>
</template>

<script>
  import Counter from './Counter.vue'

  const store = {
    state: {
      countersAmount: 1
    },
    incrementCounters() {
      ++this.state.countersAmount
    }
  }

  export default {
    data() {
      return {
        state: store.state
      }
    },
    methods: {
      addCounter() {
        store.incrementCounters()
      }
    },
    components: {
      Counter
    }
  }
</script>

Counter.vue

<template>
    <div>
        <h1>{{state.counterValue}}</h1>
        <button v-on:click="increment">+</button>
    </div>
</template>
<script>
const store = {
    state: {
        counterValue: 0,
    },
    increment() {
        ++this.state.counterValue
    }
}
export default {
    data() {
        return {
            state: store.state
        }
    },
    methods: {
        increment() {
            store.increment()
        }
    }
}
</script>

解决方案

You're using the same state for every Counter instance.

const store = {
  state: {
    counterValue: 0,
  },
  increment() {
    ++this.state.counterValue
  }
}

The code above will be executed only once, and every instance of this component will share this state.

To change this, just return a new object as the initial state, like so:

<template>
    <div>
        <h1>{{counterValue}}</h1>
        <button v-on:click="increment">+</button>
    </div>
</template>
<script>

export default {
    data() {
        return {
          counterValue: 0
        }
    },
    methods: {
        increment() {            
            ++this.counterValue;
        }
    }
}
</script>

The Simple State Management from Scratch you linked, is for shared state between components, as you can see in the picture:

这篇关于确保同一组件的多个实例具有非共享状态的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆