JS字典遍历

#data为字典
for (const [key, value] of Object.entries(data)) {
      console.log(key, value);
  }

你可能感兴趣的:(微信小程序,javascript)