我希望始终至少选中一个复选框,但我混合了v-model
和:checked
的概念。
doc说:
v-model
会忽略最初的value
,checked
或selected
属性 在任何表格元素上找到。它将始终处理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)
}
任何停止原生复选框传播的想法?
答案 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;
}
}