1 Star 0 Fork 0

dingguo98/hr-59

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test.js 715 Bytes
一键复制 编辑 原始数据 按行查看 历史
定国 提交于 2021-03-11 15:25 . 106-转换逻辑的详解
const dict = {
姓名: 'username',
年龄: 'age'
}
// 源数据
const results = [
{ 姓名: 'tom', 年龄: 12 },
{ 姓名: 'rose', 年龄: 13 },
{ 姓名: 'jerry', 年龄: 14 },
{ 姓名: 'jack', 年龄: 15 }
]
const arr = [
{ username: 'tom', age: 12 },
{ username: 'rose', age: 13 },
{ username: 'jerry', age: 14 },
{ username: 'jack', age: 15 }
]
// 遍历 results
const item = { 姓名: 'tom', 年龄: 12 },
// { 姓名: 'rose', 年龄: 13 },
// { 姓名: 'jerry', 年龄: 14 },
// { 姓名: 'jack', 年龄: 15 }
// 遍历 item 的 key
const key = '姓名'
// 我要得到 name:'tom'
const newKey = dict[key]
const userInfo = {}
userInfo[newKey] = item[key]
{username: tom}
// 年龄: 12
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dingguo98/hr-59.git
git@gitee.com:dingguo98/hr-59.git
dingguo98
hr-59
hr-59
master

搜索帮助