另一個JSON我有2個不同的JSON對象推進價值在角
JSON1
[
{
title: "Order Rule Violations",
type: "FieldView",
panel: "expanded",
data: [
{
label: "Rule Description",
type: "text",
},
{
label: "comments",
type: "inputarea",
},
],
},
]
JSON2
[
{
data: [
{
value: "00695",
},
{
value: " ",
},
],
},
]
我需要結合起來,並得到一個結果如
[
{
title: "Order Rule Violations",
type: "FieldView",
panel: "expanded",
data: [
{
label: "Rule Description",
type: "text",
value: "00695",
},
{
label: "comments",
type: "inputarea",
value: " ",
},
],
},
]
請告知我如何能夠做到這一點使用角/打字稿
這不是一個具體的問題。它可以在Javascript或Typescript中完成,具體取決於您使用的是什麼? –
我需要打字稿 – aabbcc