欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JS - 7 - Map和WeakMap

程序员文章站 2022-05-20 14:57:20
...

上一篇:《JS - 6 - Set 和 WeakSet - 弱引用》

视频:https://www.bilibili.com/video/av75335792?p=1

和 set 基本一样


Map

# 需求?

对象的 键 只能是字符串。
因此,需要一个任意类型都能作为 key 的 数据结构 ⇒ map

JS - 7 - Map和WeakMap

JS - 7 - Map和WeakMap

# 增删改查

## set、get

JS - 7 - Map和WeakMap

## delete

删除成功 true
JS - 7 - Map和WeakMap

# 遍历

JS - 7 - Map和WeakMap

JS - 7 - Map和WeakMap

# 类型转换

JS - 7 - Map和WeakMap

JS - 7 - Map和WeakMap

JS - 7 - Map和WeakMap

WeakMap

# 键必须为对象/引用

JS - 7 - Map和WeakMap
JS - 7 - Map和WeakMap

# 弱引用

JS - 7 - Map和WeakMap

JS - 7 - Map和WeakMap

# 案例

JS - 7 - Map和WeakMap

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <style>
    ul li {
      width: 300px;
    }
    ul li a {
      background-color: green;
      display: inline-block;
      color: aliceblue;
    }
    div {
      width: 600px;
    }
    #list span{
      background-color: aqua;
    }
  </style>
</head>
<body>
  <div>
    <ul>
      <li><span>php</span> <a href="javascript:;" >添加</a></li>
      <li><span>js</span> <a href="javascript:;">添加</a></li>
      <li><span>node.js</span> <a href="javascript:;">添加</a></li>
    </ul>
  </div>
  <div>
    <strong id='count'>共选择了0门课</strong>
    <p id='list'></p>
  </div>
<script>
  class Lesson {
    constructor() {
      this.lis = document.querySelectorAll('ul>li') ;
      this.contElem = document.getElementById('count') ;
      this.listElem = document.getElementById('list') ;
      this.map = new WeakMap() ;
    }
    run() {
      this.lis.forEach(li => {
        let a = li.querySelector('a');
        a.addEventListener('click', (event) => {
          const state = li.getAttribute('select') ;
          if(state) {
            li.removeAttribute('select') ;
            this.map.delete(li) ;
            a.innerHTML = '添加'
            a.style.backgroundColor = 'green' ; 
          }else {
            this.map.set(li) ;
            li.setAttribute("select", true) ; 
            a.innerHTML = '减少' ; 
            a.style.backgroundColor = 'red' ;
          }
          this.render() ;
        })
      });
    }
    count() {
      return [...this.lis].reduce((count, li) => {
        return count += this.map.has(li)? 1 : 0 ;
      }, 0)
    }
    lists() {
      return  [...this.lis].filter((li) => {
        return this.map.has(li) ;
      }).map( li => {
        return `<span>${li.querySelector('span').innerHTML}</span>` ; 
      }).join(' ') ;
    }
    render() { // 渲染
      this.contElem.innerHTML = `共选择了${this.count()}门课` ;
      this.listElem.innerHTML = this.lists() ;
    }
  }
  new Lesson().run() ;
</script>
</body>
</html>
相关标签: # ECMAscript 6