在Vue中,如何根据条件取消复选框?

时间:2017-10-10 16:38:09

标签: checkbox vue.js vuejs2 v-model

我希望始终至少选中一个复选框,但我混合了v-model:checked的概念。

doc说:

  

v-model会忽略最初的valuecheckedselected属性   在任何表格元素上找到。它将始终处理Vue实例数据   作为真理的来源。

我可以阻止我的模型被修改,但我无法阻止复选框被检查......

一些代码:

模板

<div class="wrapper" v-for="(s, id) in userOutputSeries" :key="id">
  <input type="checkbox" :id="id" :value="id" @change="preventIfLessThanOneChecked" :checked="s.active">
  <label :for="id">{{ s.display }}</label>
</div>

模型userOutputSeries

data () {
  return {
    userOutputSeries: {
      foo: {
        display: 'Awesome Foo',
        active: true
      },
      bar: {
        display: 'My Bar',
        active: false
      }
    }
  }
}

preventIfLessThanOneChecked处理程序

preventIfLessThanOneChecked (event) {
  // I don't update the model so it stay at the same state
  // But only need to count the active series and do what we want.
  console.log(event.target.value, event.target.checked)
}

任何停止原生复选框传播的想法?

3 个答案:

答案 0 :(得分:2)

您应该使用v-model代替:checked,以便对userOutputSeries数据属性的更改将反映在复选框输入中。

然后,将s引用从v-for传递给方法,如果没有active复选框,则将该对象的true属性设置为active

new Vue({
  el: '#app',
  data() {
    return {
      userOutputSeries: {
        foo: {
          display: 'Awesome Foo',
          active: true
        },
        bar: {
          display: 'My Bar',
          active: false
        }
      }
    }
  },
  methods: {
    preventIfLessThanOneChecked(item) {
      if (item.active) {
        return;
      }
    
      let items = Object.values(this.userOutputSeries);
      if (!items.find(i => i.active)) {
        item.active = true;
      }
    }
  }
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.4.4/vue.min.js"></script>
<div id="app">
  <div class="wrapper" v-for="(s, id) in userOutputSeries" :key="id">
    <input type="checkbox" :id="id" :value="id" @change="preventIfLessThanOneChecked(s)" v-model="s.active">
    <label :for="id">{{ s.display }}</label>
  </div>
</div>

答案 1 :(得分:1)

尝试在单个选中的复选框上使用<div class="wrapper" v-for="(s, id) in userOutputSeries" :key="id"> <input type="checkbox" :id="id" :value="id" :disabled="(s.active && numberOfChecked == 1) ? disabled : null" @change="preventIfLessThanOneChecked" :checked="s.active"> <label :for="id">{{ s.display }}</label> </div>

{{1}}

答案 2 :(得分:0)

在上述@thanksd给出的答案中,我的复选框未选中。 所以我正在写我的解决方案。

这是我的循环语句,根据您的文件更改变量名称。

v-for="column in tableColumns"

这是我的输入(如果visible为true,则选中复选框)

<input type="checkbox" v-model="column.visible" @change="event => columnsChanged(column, event)">

然后使用我的更改方法  -如果没有可见的项目,请将column.visible设置为true  -使用event.target.checked = true再次选中该复选框。

visibleColumnsChanged: function(column, event){
  if (column.visible) {
    return;
  }

  if(! this.tableColumns.find(c => c.visible)){
    column.visible = true;

    event.target.checked = true;
  }
}