为了账号安全,请及时绑定邮箱和手机立即绑定

Github API 响应复制到 javascript 对象 Angular 应用程序

Github API 响应复制到 javascript 对象 Angular 应用程序

青春有我 2023-07-14 09:58:46
使用github端点https://api.github.com/users/,我想将json响应复制到具有相同键的javascript对象中,有没有比逐行使用oject变量赋值更好的方法? ?示例 json 响应{    "login": "imukunya",    "name": null,    "company": null,    "blog": "",    "location": null,    "email": null,    "hireable": null,    "bio": null,    "twitter_username": null,    "public_repos": 19,    "public_gists": 0,    "followers": 0,    "following": 0,    "created_at": "2020-04-28T07:14:15Z",    "updated_at": "2020-11-06T04:20:24Z"}JavaScript 对象userProfile = {        "login": "",    "name": ,    "company": ,    "blog": "",    "location":"" ,    "email": "",    "hireable": "",    "bio": "",    "twitter_username": "",    "public_repos": 0,    "public_gists": 0,    "followers": 0,    "following": 0,    "created_at": "",    "updated_at": ""}
查看完整描述

1 回答

?
蝴蝶刀刀

TA贡献1801条经验 获得超8个赞

使用扩展运算符。

userProfile = { ...userProfile, ...jsonResponse };


查看完整回答
反对 回复 2023-07-14
  • 1 回答
  • 0 关注
  • 105 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信