gpt4 book ai didi

javascript - Lodash isUndefined 提供意想不到的结果

转载 作者:行者123 更新时间:2023-11-30 09:45:37 26 4
gpt4 key购买 nike

我在 Node 中有一个使用 Lodash isUndefined 的三元组:sendUser.company = _.isUndefined(user.accounts[0].name) ? null : 用户.accounts[0].name;但是当我尝试运行它时,我得到类型错误:无法读取未定义的属性“名称”。不确定我在这里遗漏了什么。

最佳答案

似乎 accounts[0] 也可能未定义 - 所以您也需要检查一下:

sendUser.company = ! user.accounts[0] || _.isUndefined(user.accounts[0].name) ? null : user.accounts[0].name;

关于javascript - Lodash isUndefined 提供意想不到的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39016658/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com