gpt4 book ai didi

javascript - 是否有一种简写方式可以循环遍历带有下划线的对象内的所有对象?

转载 作者:行者123 更新时间:2023-12-03 11:17:47 26 4
gpt4 key购买 nike

在下划线或纯javascript中,是否有简写

_.each(data.data, function(user){
_.each(user.apilog, function(event){
//the stuff
})
})

最佳答案

像这样的东西怎么样(未经测试)。

这依赖于pluckchaining

_(data.data)
.pluck('apilog')
.each(function(event) {
//the stuff
});

我有点怀疑它是否会更有效 - 但它看起来更好一点!

关于javascript - 是否有一种简写方式可以循环遍历带有下划线的对象内的所有对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27259115/

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