JS用map做接口数据映射
Posted Nayek
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS用map做接口数据映射相关的知识,希望对你有一定的参考价值。
· 接口做数据映射的好处:前端页面自定义的字段不需要和后端字段相同,后端修改字段前端不受影响.
· 从接口得到数据 res:
let r = res.map(item => {
return {
title: item.name,
sex: item.sex === 1? '男':item.sex === 0?'女':'保密',
age: item.age,
avatar: item.img
}
})
· 也可以省略 return:
const users=res.items.map(item => ({
url: item.html_url,
img: item.avatar_url,
name: item.login,
})
);
以上是关于JS用map做接口数据映射的主要内容,如果未能解决你的问题,请参考以下文章