美文网首页
element-admin-ui学习笔记

element-admin-ui学习笔记

作者: 雨落流年 | 来源:发表于2020-07-03 23:02 被阅读0次
    图片来源于网络,如有侵权请联系删除

    前言

    随着前端的繁荣,各式框架层出不穷,在VUE的大环境下,各位优秀的作者提供了诸多好用的半成品和成品供我们使用,而element-admin-ui
    就是其中的一款好用的框架,感谢作者,然后让我们总结下其中学到的新鲜知识。

    1.数组转对象
    const itemTypes = [
      { key: 1, name: '选择题' },
      { key: 2, name: '多选题' },
      { key: 3, name: '填空题' },
      { key: 4, name: '判断题' },
      { key: 5, name: '简答题' }
    ]
    
    const itemName = itemTypes.reduce((acc, cur) => {
      acc[cur.key] = cur.name
      return acc
    }, {})
    
    数组转为的对象

    2.对象拷贝

    const target = { a: 1 }
    const source = { a: 2, b=2}
    const result = Object.assign(target,source)
    
    拷贝结果

    相关文章

      网友评论

          本文标题:element-admin-ui学习笔记

          本文链接:https://www.haomeiwen.com/subject/rxweqktx.html