- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
跟进我之前关于使用 lodash 转换数据的问题,这次我要求输出是对象属性而不是集合。我感谢您的帮助,如果有人也可以指导我从哪里正确开始,以便我更好地理解这些概念
示例数据
var sample = [{
"changeType": 1,
"type": "changeAccount",
"updated": {
"id": 71,
"company": 124201,
"user": 8622
}
},
{
"changeType": 2,
"type": "changeAccount",
"updated": {
"id": 70,
"company": 124201,
"user": 8622
}
},
{
"changeType": 1,
"type": "changeproduct",
"updated": {
"id": 15,
"company": 124201,
"user": 8622
}
}
]
// what I tried
var result = _.mapValues(_.groupBy(sample, "type"), x => x.map(y => _.omit(y, "changeType")));
console.log(result);
预期结果
var output = {
"ChangeAccount": {
"changeTypes":
{
"add": [{}], //type 1
"remove": [{}] //type 2
}
},
"ChangeProduct":{
"changeTypes":
{
"add": [{}], //type 1
"remove": [{}] //type 2 will be empty in this case
}
}
}
上一个问题的答案
const fn = arr =>
map(groupBy(arr, 'type'), (group, type) => ({ // group and map to array of objects
type,
...mapValues( // spread after mapping the values to extract updated
groupBy(group, 'changeType'), // group again by changeType
items => items.map(item => pick(item, 'updated') // extract the updated from each item
))
}))
**上一个答案输出**
[
{
[
{
"updated": {
"id": 71,
"company": 124201,
"user": 8622
}
}
],
[
{
"updated": {
"id": 70,
"company": 124201,
"user": 8622
}
}
],
"type": "changeAccount"
},
{
[
{
"updated": {
"id": 15,
"company": 124201,
"user": 8622
}
}
],
"type": "changeproduct"
}
最佳答案
我想说的是,你并不是被迫使用 lodash,你可以用简单的 javascript 来实现这一点。但是,由于您需要使用 lodash,这里有一个简单的方法。您可以根据您的要求的难易程度来简化它。
const omitChangeType = ({changeType, ...rest}) => rest // this is just ES6, don't need lodash for this
_.mapValues(
_.groupBy(sample, "type"),
(x) => ({
changeTypes: {
add: x.filter(_.matches({ changeType: 1 })).map(omitChangeType),
remove: x.filter(_.matches({ changeType: 2 })).map(omitChangeType)
}})
)
我喜欢这个解决方案的地方在于,您可以了解最终结构的外观。
输出:
{
"changeAccount": {
"changeTypes": {
"add": [
{
"type": "changeAccount",
"updated": {
"id": 71,
"company": 124201,
"user": 8622
}
}
],
"remove": [
{
"type": "changeAccount",
"updated": {
"id": 70,
"company": 124201,
"user": 8622
}
}
]
}
},
"changeproduct": {
"changeTypes": {
"add": [
{
"type": "changeproduct",
"updated": {
"id": 15,
"company": 124201,
"user": 8622
}
}
],
"remove": []
}
}
}
在我的解决方案中,我使用了一些 ES 解构,如果您要处理这样的数据修改,这是一个非常方便的功能。 Take a look at this if你不熟悉它。另外,我不确定您的意图是否只是省略changeType,或者您是否想提取每个对象的更新部分。如果您只想选择每个对象的更新属性,只需通过以下函数名称更改每个外观,并添加此函数声明:
const pickUpdated = ({updated}) => updated
所以代替 .map(omitChangeType)
你做.map(pickUpdated)
在这种情况下,输出将如下所示
{
"changeAccount": {
"changeTypes": {
"add": [
{
"id": 71,
"company": 124201,
"user": 8622
}
],
"remove": [
{
"id": 70,
"company": 124201,
"user": 8622
}
]
}
},
"changeproduct": {
"changeTypes": {
"add": [
{
"id": 15,
"company": 124201,
"user": 8622
}
],
"remove": []
}
}
}
如有任何疑问,请随时发表评论
关于javascript - 使用 lodash 将数据转换为对象属性而不是集合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59378506/
使用lodash,如何将生日相同的人的姓名归为一组,如下所示? 我使用嵌套的for循环写出了这个信息,但我想在lodash中会有一种更优雅的方法。我没有使用太多,并试图找出要使用的功能。 [
嘿,我想使用 lodash 计算对象数组中一个属性的总和 假设对象数组看起来像这样...... salary":[{ "bills":[{"electricity":300,"milk":500
我试图在调整窗口大小时触发一个事件,它似乎不起作用。 $(window).resize(function(){ _.debounce(function(){ console.log
我正在使用 StencilJS 编写一个网络组件。由我的组件导入的辅助类之一 (ArrayHelper.ts) 在顶部有这些导入: import transform from 'lodash/tran
我想用比较器对数组进行排序,例如: function myCustomComparator(a, b){...} 好像是 var sorted = myArray.sort(myCustomCompa
我试图弄清楚 Lodash iteratee 的工作原理以及我将在哪里使用它。 The documentation says: Creates a function that invokes func
我是 lodash (v3.10.1) 的新手,很难理解。希望有人能帮忙。 我有这样的输入: { {"id":1,"name":"Matthew","company":{"id":1,"na
我正在尝试添加到流类型的类型中。我从 lodash/fp 模块开始,因为它对我自己最有用。但是,我正在为如何正确输入它而苦苦挣扎。 如果 dropRightWhile 的一个简单示例: declare
有没有办法获取 lodash API 文档的 2.x 版本?上周末似乎主要链接已切换到 3.x,无法查看 2.x 文档。 https://lodash.com/docs 最佳答案 您可以在 Inter
为了减少 Angular 项目的包大小,我正在安装和导入单独的 lodash 库。 IE。 lodash.clonedeep 和其他 lodash.* 但会丢失这些的类型定义,因为它们不能与 @typ
像这样从 lodash 导入"template"有什么区别: import { template } from 'lodash'; 或者像这样: import template from 'lodas
我看到导入整个 lodash 库占用了相当多的磁盘空间: $ du . | grep lodash 1696 ./lodash/fp 5000 ./lodash 在我的代码中我只是在做 r
According to the lodash docs , _.extend(object, [sources]) 改变第一个参数。 var dest = { a: 1 }; _.extend(
我想创建值为“str”的键数组我有以下嵌套 json: [ { "Attr": [ { "power": { "p1": "str", "t3": "str"
lodash 提供了一个方法 _.uniq()从数组中查找唯一元素,但使用的比较函数是严格相等 === , 而我想使用 _.isEqual() ,满足: _.isEqual([1, 2], [1, 2
是escape和 unescape underscore 的功能和 lodash相同?我也可以吗escape与 lodash和 unescape与 underscore并且总是得到相同的字符串? 我可
我知道 rxjs 和 lodash 的定义和职责,但我想知道: 当我在我的项目中使用 rxjs 时,我可以扔掉 lodash 吗? 因为 rxjs 可以同步和异步工作(异步和同步数据)。我认为它可以作
使用 lodash 我想找到一个 id 为 3229 的团队。我尝试关注但它没有返回任何内容。 var team = _.chain(data.teams) .flatten(
我想知道 2 次导入在内存和性能方面是否有任何差异。 如果我的节点模块中有 lodash,无论导入如何,它都会编译所有文件吗? 最佳答案 理论上,based on the specification
基本上,我有一个对象数组,我只想更新数组中满足条件的对象。我想知道是否有解决该问题的有效方法。现在我正在使用 lodash。这是一个例子: var things = [ {id: 1, typ
我是一名优秀的程序员,十分优秀!