博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Javascript] Safer property access with Lodash's 'get' method
阅读量:5298 次
发布时间:2019-06-14

本文共 925 字,大约阅读时间需要 3 分钟。

Property access in Javascript can be problematic - especially when dealing with nested Objects and Arrays. Doing it manually and in a safe manner requires tons of boilerplate inside conditionals and results in a defensive style of coding. In this lesson we look at why this is a problem & how to overcome it using the get method from the popular utility library Lodash

 

var data = {  "response": {    "body": {      "deviceDetail": {        "deviceDetails": [          {            "handsetIMEI": 7356383,            "handsetDateLastUsed": "2019-04-20T01:02:03.812Z",          },          {            "handsetIMEI": 34534,            "handsetDateLastUsed": "2019-04-20T01:02:03.812Z",          }        ]      }    }  }}const ns = ['response', 'body', 'deviceDetail', 'deviceDetails'];const handsetIMEI = _.get(data, ns.concat([0, 'handsetIMEI']))console.log(handsetIMEI)

 

转载于:https://www.cnblogs.com/Answer1215/p/5927740.html

你可能感兴趣的文章
SDUTOJ3754_黑白棋(纯模拟)
查看>>
Scala入门(1)Linux下Scala(2.12.1)安装
查看>>
laravel
查看>>
如何改善下面的代码 领导说了很耗资源
查看>>
Quartus II 中常见Warning 原因及解决方法
查看>>
高德地图 – 1.问题集锦
查看>>
php中的isset和empty的用法区别
查看>>
Android ViewPager 动画效果
查看>>
pip和easy_install使用方式
查看>>
博弈论
查看>>
Redis sentinel & cluster 原理分析
查看>>
我的工作习惯小结
查看>>
把word文档中的所有图片导出
查看>>
浏览器的判断;
查看>>
ubuntu 18.04取消自动锁屏以及设置键盘快捷锁屏
查看>>
Leetcode 589. N-ary Tree Preorder Traversal
查看>>
thinking back no11
查看>>
机器学习/深度学习/其他开发环境搭建记录
查看>>
xml.exist() 实例演示
查看>>
判断是否为空然后赋值
查看>>