Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

119
Visualizações
Json Path sum functions for List of List

I am using JSON path to do something similar to this:

I have copied the JSON path example, but modified the price field to represent price Year-over-Year (number to array).

{
  "store": {
    "book": [
      {
        "category": "reference",
        "author": "Nigel Rees",
        "title": "Sayings of the Century",
        "price": [ 1, 2, 3 ]
      },
      {
        "category" :"fiction",
        "author": "Evelyn Waugh",
        "title": "Sword of Honour",
        "price": [ 1, 2, 3 ]
      },
      {
        "category": "fiction",
        "author": "Herman Melville",
        "title": "Moby Dick",
        "isbn": "0-553-21311-3",
        "price": [ 1, 2, 3 ]
      },
      {
        "category": "fiction",
        "author": "J. R. R. Tolkien",
        "title": "The Lord of the Rings",
        "isbn": "0-395-19395-8",
        "price": [ 1, 2, 3 ]
      }
    ],
    "bicycle": {
      "color": "red",
      "price": [ 1, 2, 3 ]
    }
  },
  "expensive": 10
}

What I want to find is the year over year total price for all the books.

I can get a Array of Array (lets say res) using: $.store.book[*].price

Output:

[
   [ 1, 2, 3 ],
   [ 1, 2, 3 ],
   [ 1, 2, 3 ],
   [ 1, 2, 3 ]
]

I want to further reduce this output (by sum) to:

[4, 8, 12] // Sum up nth element of each array.
           // (res[0][0] + res[1][0] + res[2][0] + res[3][0] = 4 ... and so on)

Is there a way to achieve this using jsonpath (preferred)/any other JavaScript syntax ?

about 4 years ago · Juan Pablo Isaza
3 Respostas
Responde à pergunta

0

let data = [
  [ 1, 7, 3 ],
  [ 2, 6, 3 ],
  [ 3, 5, 3 ],
  [ 4, 4, 3 ]
]

let result = data[0].map((_, colIndex) => data.map(row => row[colIndex]))
                    .map(value => value.reduce((acc, value) => acc + value, 0))

console.log(result)   // [ 10, 22, 12 ]

The first map transposes rows and columns, the second map sums up what after the transpose are the rows.

about 4 years ago · Juan Pablo Isaza Relatório

0

const data = {
  "store": {
    "book": [{
        "category": "reference",
        "author": "Nigel Rees",
        "title": "Sayings of the Century",
        "price": [1, 2, 3]
      },
      {
        "category": "fiction",
        "author": "Evelyn Waugh",
        "title": "Sword of Honour",
        "price": [1, 2, 3]
      },
      {
        "category": "fiction",
        "author": "Herman Melville",
        "title": "Moby Dick",
        "isbn": "0-553-21311-3",
        "price": [1, 2, 3]
      },
      {
        "category": "fiction",
        "author": "J. R. R. Tolkien",
        "title": "The Lord of the Rings",
        "isbn": "0-395-19395-8",
        "price": [1, 2, 3]
      }
    ]
  }
}

const prices = []

data.store.book.forEach(book => {
  book.price.forEach((price, index) => {
    if (!prices[index]) prices[index] = 0;
    prices[index] += price;
  })
})

console.log(prices)

about 4 years ago · Juan Pablo Isaza Relatório

0

You can use some .map() and Array.prototype.reduce() paired with comma operator.

const a = { "store": { "book": [{ "category": "reference", "author": "Nigel Rees", "title": "Sayings of the Century", "price": [1, 2, 3] }, { "category": "fiction", "author": "Evelyn Waugh", "title": "Sword of Honour", "price": [1, 2, 3] }, { "category": "fiction", "author": "Herman Melville", "title": "Moby Dick", "isbn": "0-553-21311-3", "price": [1, 2, 3] }, { "category": "fiction", "author": "J. R. R. Tolkien", "title": "The Lord of the Rings", "isbn": "0-395-19395-8", "price": [1, 2, 3] } ], "bicycle": { "color": "red", "price": [1, 2, 3] } }, "expensive": 10 }.store.book

console.log(a.map(x=>x.price).reduce((x,y)=>(y.map((i,z)=>x[z]+=y[z]),x)))

about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda