在JavaScript中,Map对象允许存储任何类型的键和值,提供了键值对的存储功能。在HarmonyOS中,Map的使用基本遵循JavaScript的标准,尤其是要注意set赋值只能用get获取,而索引赋值只能用索引获取。且它们可以同时赋值但遍历的方式又不同。

【Map 对象的赋值与获取】

  1. 使用set方法赋值
    当你需要创建一个Map对象并为其设置初始值时,可以使用new Map()构造函数,并传入一个由键值对组成的数组。一旦通过set方法设置了值,那么必须使用get方法来检索这些值。
let p: Map<string, string> = new Map([["mobile", "13444444444"]]);
p.set('aaa', '111');
console.info(`p.get('mobile'):` + p.get('mobile'));
console.info(`p.get('aaa'):` + p.get('aaa'));
  1. 使用Object.entries转换为Map
    如果你有一个对象,并希望将其转换为Map对象,可以利用Object.entries方法来实现这一点。此方法将对象的所有可枚举属性转换成键值对数组,然后可以用这些数组来初始化Map。
let strParam = '{"main":"aasadada","ks":"sadadas","sc":11111,"update":"asdasdasda"}';
let obj: object = JSON.parse(strParam);
let p2: Map<string, string | number> = new Map(Object.entries(obj));
console.info(`p2.get('main'): ${p2.get('main')}`);
  1. 使用索引赋值
    当处理从接口API返回的数据时,可能需要将JSON字符串直接解析为Map。需要注意的是,虽然可以这样做,但是当尝试通过索引访问时,必须确保数据类型正确。
let jsonStr2 = `{"mobile2":"哈哈哈"}`;
let p3 = JSON.parse(jsonStr2) as Map<string, Object>;
console.info(`p3['mobile2']:${p3['mobile2']}`);

【Map 的遍历】
Map对象支持多种遍历方式,这取决于你是如何赋值的。

  1. 使用forEach遍历
    对于通过set方法赋值的Map,推荐使用forEach来进行遍历。
p.forEach((value, key) => {
  console.info(`Key (set): ${key}, Value (set): ${value}`);
});
  1. 使用索引遍历
    如果Map是通过索引赋值的,则应使用Object.keys结合forEach来遍历键值对。
Object.keys(targetMap).forEach((key) => {
  console.info(`Key (index): ${key}, Value (index): ${targetMap[key]}`);
});

【完整示例】

@Entry
@Component
struct Index {
  build() {
    Column() {
      Button('测试')
        .onClick(() => {
          let p1: Map<string, string> = new Map([["mobile", "13444444444"]]);
          p1.set('aaa', '111');
          console.info(`p1.get('mobile'):` + p1.get('mobile'));
          console.info(`p1.get('aaa'):` + p1.get('aaa'));

          let strParam = '{"main":"aasadada","ks":"sadadas","sc":11111,"update":"asdasdasda"}';
          let obj: object = JSON.parse(strParam);
          let p2: Map<string, string | number> = new Map(Object.entries(obj));
          console.info(`p2.get('main'): ${p2.get('main')}`);

          let jsonStr2 = `{"mobile2":"哈哈哈"}`
          let p3 = JSON.parse(jsonStr2) as Map<string, Object>
          console.info(`p3['mobile2']:${p3['mobile2']}`)

          console.info(`遍历p1 forEach`)
          p1.forEach((value, key) => {
            console.info(`Key (set): ${key}, Value (set): ${value}`);
          });

          console.info(`遍历p2 forEach`)
          p2.forEach((value, key) => {
            console.info(`Key (set): ${key}, Value (set): ${value}`);
          });

          console.info(`遍历p3 forEach`)
          try {
            p3.forEach((value, key) => {
              console.info(`Key (set): ${key}, Value (set): ${value}`);
            });
          } catch (e) {
            console.error(`e:${JSON.stringify(e)}`)
          }

          console.info(`遍历p1 Object.keys`)
          Object.keys(p1).forEach((key) => {
            console.info(`Key (index): ${key}, Value (index): ${p1[key]}`);
          });

          console.info(`遍历p2 Object.keys`)
          Object.keys(p2).forEach((key) => {
            console.info(`Key (index): ${key}, Value (index): ${p2[key]}`);
          });

          console.info(`遍历p3 Object.keys`)
          Object.keys(p3).forEach((key) => {
            console.info(`Key (index): ${key}, Value (index): ${p3[key]}`);
          });

        })
    }
    .height('100%')
    .width('100%')
  }
}

打印

p1.get('mobile'):13444444444
p1.get('aaa'):111
p2.get('main'): aasadada
p3['mobile2']:哈哈哈
遍历p1 forEach
Key (set): mobile, Value (set): 13444444444
Key (set): aaa, Value (set): 111
遍历p2 forEach
Key (set): main, Value (set): aasadada
Key (set): ks, Value (set): sadadas
Key (set): sc, Value (set): 11111
Key (set): update, Value (set): asdasdasda
遍历p3 forEach
e:{}
遍历p1 Object.keys
遍历p2 Object.keys
遍历p3 Object.keys
Key (index): mobile2, Value (index): 哈哈哈

注意事项
• 类型一致性:确保在使用Map时,键和值的类型保持一致。
• 遍历方式:根据赋值方式选择正确的遍历方法。
• 错误处理:在尝试遍历非Map类型时,应适当处理可能出现的异常。


zhongcx
1 声望3 粉丝