我有一个Java后端,可以接受这样的json响应:
{ “帐户”:[{ “ t1_Title”:“ title1” },{ “ t1_Title”:“ title2” }] }
在Angular中,我将数组发送到服务以发送到后端。 如何将“帐户”添加到数组,并保持上面结构的结构像这样:
(2) [Array(1), Array(1)]
0: [{…}]
1: [{…}]
length: 2
答案 0 :(得分:0)
只需将数组值绑定到新对象中的accounts
键。
示例代码:
let myArray = [{ "t1_Title": "title1" }, { "t1_Title": "title2" }]
//build JSON
let obj = {accounts : myArray};
// print JSON
console.log(obj)