Vuex入门到实战(十一)—【实践篇】checkbox改状态

这节完成点击checkbox改变公共数据list中done的值


注意点:checkbox 绑定 onChange() 如何拿到 e 的同时传递一个参数过去?【 一般onChange事件绑定时不必声明参数@change='onChange’即可,下文onChange (e) {…} 】
Vuex入门到实战(十一)—【实践篇】checkbox改状态_第1张图片

1、store/index.js——增加 changeStatus 方法,findIndex 拿到 id 并找到对应项并修改此项的选中状态

import Vue from 'vue'
import Vuex from 'vuex'
import axios from 'axios'

Vue.use(Vuex)

export default new Vuex.Store({
     
  state: {
     
    list: [],
    inputValue: '', // 文本框内容
    nextId: 5 // list中id属性取值
  },
  mutations: {
     
    initList (state, step) {
     
      state.list = step
    },
    // 为 inputValue 赋值
    setInputValue (state, val) {
     
      state.inputValue = val
    },
    // 将inputValue存储到list中
    addInputValue (state) {
     
      const obj = {
     
        id: state.nextId,
        info: state.inputValue.trim(),
        done: false
      }
      state.list.push(obj)
      state.nextId++

      state.inputValue = ''
    },
    removeItem1 (state, step) {
     
      state.list.forEach((e, index) => {
     
        if (e.id === step) {
     
          return state.list.splice(index, 1)
        }
      })
    },
    removeItem2 (state, step) {
     
      // 根据id查找对应的索引
      const i = state.list.findIndex(x => x.id === step)
      // 根据索引,删除对应的元素
      if (i !== -1) {
     
        state.list.splice(i, 1)
      }
    },
    // 修改列表项的选中状态
    changeStatus (state, param) {
     
      const i = state.list.findIndex(x => x.id === param.id)
      if (i !== -1) {
     
        state.list[i].done = param.done
      }
    }
  },
  actions: {
     
    getList (context) {
     
      axios.get('/list.json').then(({
       data }) => {
     
        console.log(data)
        context.commit('initList', data)
      })
    }
  }
})

2、App.vue——checkbox 绑定 onChange() ,关键的是拿到 e 中当前项最新选中状态,同时传当前 id 过来。代码中写了两种实现方式,一种 $event,一种 @change 使用箭头函数写法。

<template>
  <div id="app">
    <a-input
      placeholder="请输入任务"
      class="my_ipt"
      :value="inputValue"
      @change="handleInputChange"
    />
    <a-button type="primary" @click="addItemToList()">添加事项a-button>

    <a-list bordered :dataSource="list" class="dt_list">
      <a-list-item slot="renderItem" slot-scope="item">
        
        <a-checkbox :checked='item.done' @change='onChange($event, item.id)'>{
    { item.info }}a-checkbox>
        
        <a slot="actions" @click="removeItemById(item.id)">删除a>
      a-list-item>

      
      <div slot="footer" class="footer">
        
        <span>0条剩余span>
        
        <a-button-group>
          <a-button type="primary">全部a-button>
          <a-button>未完成a-button>
          <a-button>已完成a-button>
        a-button-group>
        
        <a>清除已完成a>
      div>
    a-list>
  div>
template>

<script>
import {
        mapState, mapMutations } from 'vuex'
export default {
       
  name: 'app',
  data () {
       
    return {
       }
  },
  created () {
       
    this.$store.dispatch('getList')
  },
  computed: {
       
    ...mapState(['list', 'inputValue'])
  },
  methods: {
       
    ...mapMutations(['setInputValue', 'addInputValue', 'removeItem1', 'removeItem2', 'changeStatus']),
    // 监听文本框内容变化
    handleInputChange (e) {
       
      // 拿到最新值,并同步到store
      console.log(e.target.value)
      this.setInputValue(e.target.value)
    },
    // 向列表项中新增 item 项
    addItemToList () {
       
      if (this.inputValue.trim().length <= 0) {
        // 判空处理
        return this.$message.warning('文本框内容不能为空')
      }
      this.addInputValue()
    },
    removeItemById (id) {
       
      this.removeItem1(id)
    },
    // 监听复选框选中状态的变化
    onChange (e, id) {
       
      // 通过 e.target.checked 可以接受到最新的选中状态
      const param = {
       
        id: id,
        done: e.target.checked
      }
      this.changeStatus(param)
      // 另一种写法:
      // @change='(e) => {onChange(e, item.id)}'
      // console.log(`checked = ${e.target.checked}`)
    }
  }
}
script>

<style scoped>
#app {
       
  padding: 10px;
}

.my_ipt {
       
  width: 500px;
  margin-right: 10px;
}

.dt_list {
       
  width: 500px;
  margin-top: 10px;
}

.footer {
       
  display: flex;
  justify-content: space-between;
  align-items: center;
}
style>

你可能感兴趣的:(#,Vuex基础入门教程笔记,checkbox,vue,vuex)