作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个包含一些复选框的组件。我需要能够访问从我的 Vue 应用程序中的其他组件检查了哪些复选框,但是我一生都无法弄清楚(也无法在网上找到)如何正确地将复选框连接到我的 Vuex 商店。
将组件中的复选框连接到 Vuex 存储的正确方法是什么,以便它们的行为就像复选框通过 v-model 连接到组件数据一样?
这是我正在尝试做的事情的起点(在非常基本的意义上)
https://jsfiddle.net/9fpuctnL/
<div id="colour-selection">
<colour-checkboxes></colour-checkboxes>
</div>
<template id="colour-checkboxes-template">
<div class="colours">
<label>
<input type="checkbox" value="green" v-model="colours"> Green
</label>
<label>
<input type="checkbox" value="red" v-model="colours"> Red
</label>
<label>
<input type="checkbox" value="blue" v-model="colours"> Blue
</label>
<label>
<input type="checkbox" value="purple" v-model="colours"> Purple
</label>
<chosen-colours></chosen-colours>
</div>
</template>
<template id="chosen-colours-template">
<div class="selected-colours">
{{ colours }}
</div>
</template>
const store = new Vuex.Store({
state: {
colours: []
}
});
Vue.component('colour-checkboxes', {
template: "#colour-checkboxes-template",
data: function() {
return {
colours: []
}
}
});
Vue.component('chosen-colours', {
template: "#chosen-colours-template",
computed: {
colours() {
return store.state.colours
}
}
});
const KeepTalkingSolver = new Vue({
el: "#colour-selection"
});
目的是让颜色复选框组件中选择的颜色通过 Vuex 存储在选择颜色组件中输出。
最佳答案
2021 - 简单、易读并利用 Vue/Vuex 的强大功能......
一个简单的问题有很多复杂的答案。运行下面的代码片段以查看它的实际效果。
长话短说,您需要做的就是获取一个状态(下面的 names
),创建一个突变(下面的 setNames
)来设置它,然后绑定(bind) v-model
到 computed
(selectedNames
下面)有一个 getter 和 setter,getter 获得状态片 names
, setter 调用突变 setNames
.
在我看来,这是解决这个问题的最干净的解决方案,因为它遵循 Vue/Vuex 的自然模式以及通常如何实现复选框。
这里的其他答案试图直接改变状态而不发生突变,而其他一些答案避免使用 v-model
它提出了具有预选值的问题并且需要更多代码,最后接受的答案甚至没有显示任何关于如何实现它的 HTML 模板代码。
这是解决 的有效解决方案全部 这些问题:
const store = new Vuex.Store({
state: {
names: ['Max'],
},
mutations: {
setNames(state, names) {
state.names = names;
}
}
});
new Vue({
el: '#app',
store,
computed: {
selectedNames: {
get: function() {
return this.$store.state.names;
},
set: function(val) {
console.log(val);
this.$store.commit('setNames', val);
}
}
}
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.js"></script>
<script src="https://unpkg.com/vuex@3.6.2/dist/vuex.js"></script>
<div id="app">
<div>
<input type="checkbox" v-model="selectedNames" :value="'John'" id="checkbox-1" />
<label for="checkbox-1">Click me to add my value to the state</label>
<br />
<input type="checkbox" v-model="selectedNames" :value="'Max'" id="checkbox-2" />
<label for="checkbox-2">I am preselected since my value already exists in the state <code>names</code> array</label>
<div>State: <strong>{{ names }}</strong></div>
</div>
</div>
关于checkbox - 如何将复选框绑定(bind)到 Vuex 商店?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42686388/
我是一名优秀的程序员,十分优秀!