zoukankan      html  css  js  c++  java
  • Vue组件:组件的动态添加与删除

    一、实现效果

    二、实现代码

    HelloWorld.vue

    <template>
      <div class="hello">
        <child-page v-for="(item,index) in items"
          :key="index"
          :index="index"
          :items="items"
          @deleteIndex="del"
          @uploadData="getData">
        </child-page>
        <button @click="add">Add</button>
      </div>
    </template>
    
    <script>
    import ChildPage from './ChildPage'
    export default {
      data () {
        return {
          items: [{}],
          dataRec: []
        }
      },
      components: {
        ChildPage
      },
      methods: {
        //  add student
        add: function () {
          this.items.push({name: '', age: ''})
        },
        // delete student
        del: function (index) {
          //  not allow to delete the first
          if (index !== 0) {
            this.items.splice(index, 1)
            console.log('deleted:', JSON.stringify(this.items))
          }
        },
        //  get the data from child
        getData: function (val) {
          let index = val.index
          this.items[index] = val.data
          console.log('I got the data:', JSON.stringify(this.items))
        }
      }
    }
    </script>
    
    <!-- Add "scoped" attribute to limit CSS to this component only -->
    <style scoped>
    </style>
    
    

    ChildPage.vue

    <template>
      <div class="hello">
          <h1>Component:{{index}}</h1>
          <p>Name:<input type="text" v-model="student.name" placeholder="Please enter name"></p>
          <p>Age:<input type="text" v-model="student.age" placeholder="Please enter age"><button @click="deleteStudent">Delete</button></p>
      </div>
    </template>
    
    <script>
    export default {
      props: {
        index: {
          type: Number,
          required: true
        },
        items: {
          type: Array,
          default: Array
        }
      },
      data () {
        return {
          student: {
            name: '',
            age: ''
          }
        }
      },
      watch: {
        student: {
          handler (newV, oldV) {
            if (newV.name.length === 0) {
              return false
            }
            if (newV.age.length === 0) {
              return false
            }
    
            this.$emit('uploadData', {index: this.index, data: newV})
          },
          deep: true
        },
        items: {
          handler (newV, oldV) {
            if (newV.length !== 0) {
              this.student = {...newV[this.index]}
            }
          },
          deep: true
        }
      },
      methods: {
        deleteStudent: function () {
          this.$emit('deleteIndex', this.index)
        }
      }
    }
    </script>
    
    <!-- Add "scoped" attribute to limit CSS to this component only -->
    <style scoped>
    </style>
    
    
  • 相关阅读:
    Struts2拦截器
    Struts2执行过程
    struts.xml属性extends的执行顺序和剖析源码
    Struts2请求流程图
    8.29 脏检查笔记
    transactionManager 以及datasource type解析
    Mybatis
    Interceptor
    ongl(示例3-6 多值类型的数据处理)
    ongl(原始类型和包装类型)
  • 原文地址:https://www.cnblogs.com/yejingping/p/9651297.html
Copyright © 2011-2022 走看看