4

我正在构建一个组件,该组件可用于设置各种 vuex 属性,具体取决于路由中传递的名称。这是它的幼稚要点:

<template>
  <div>
    <input v-model="this[$route.params.name]"/>
  </div>
</template>

<script>
export default {
  computed: {
    foo: {
      get(){ return this.$store.state.foo; },
      set(value){ this.$store.commit('updateValue', {name:'foo', value}); }
    },
    bar: {
      get(){ return this.$store.state.bar; },
      set(value){ this.$store.commit('updateValue', {name:'bar', value}); }
    },
  }
}
</script>

请注意,我传递this[$route.params.name]v-model, 以使其动态化。这适用于设置(组件加载正常),但是在尝试设置值时,我收到此错误:

Cannot set reactive property on undefined, null, or primitive value: null

我认为这是因为this内部v-model变得未定义(?)

我怎样才能使这项工作?

更新

我也很想知道为什么这不起作用(编译错误):

<template>
  <div>
    <input v-model="getComputed()"/>
  </div>
</template>

<script>
export default {
  computed: {
    foo: {
      get(){ return this.$store.state.foo; },
      set(value){ this.$store.commit('updateValue', {name:'foo', value}); }
    },
    bar: {
      get(){ return this.$store.state.bar; },
      set(value){ this.$store.commit('updateValue', {name:'bar', value}); }
    },
  },
  methods: {
    getComputed(){
      return this[this.$route.params.name]
    }
  }
}
</script>
4

1 回答 1

7

是的,你里面的所有东西都<template>this范围内,所以this是未定义的。

v-model只是 and 的语法糖:value@input因此您可以使用自定义事件和 . 的计算属性来处理它:value

您还可以使用带有 getter 和 setter 的计算属性;就像是

computed: {
  model: {
    get: function () {
      return this.$store.state[this.$route.params.name]
    },
    set: function (value) {
      this.$store.commit('updateValue', { name: this.$route.params.name, value})
    }
  }
}

编辑 如果您在 setter 中有更多逻辑要做,我会像这样将它分开,保持 getter 简单,并坚持一个计算属性;

computed: {
  model: {
    get: function () {
      return this.$store.state[this.$route.params.name]
    },
    set: function (value) {
      switch(this.$route.params.name) {
        case 'foo':
          return this.foo(value)
        default:
          return this.bar(value)
      }
    }
  }
},
methods: {
  foo(val) {
    this.$store.commit(...)
  },
  bar(val) {
    this.$store.commit(...)
  }
}
于 2019-01-15T12:00:25.133 回答