我正在尝试执行两个不同列表的乘法。
这是否可以执行与列表的索引相对应的乘法,如list 1 [i] * list 2 [i]。
输入JSON
{
"salesTaxAmount": [
5.2,
5.2,
5.2
],
"quantity": [
1,
2,
1
],
"unitAmount": [
20,
20,
20
]
}
预期产出
{
"totalAmount":[20,40,20]
}
在这里,我希望totalAmount
像quantity * unitAmount
一样。
有人能帮帮我吗?
谢谢!
1条答案
按热度按时间sbtkgmzw1#
在modify规范中没有类似 multiply 或 product 这样的函数,但可以在通过shift转换(例如)重新形成单个对象后,使用**
divide
**函数进行模拟http://jolt-demo.appspot.com/站点上的***演示***是