Spring后端将角度6数组转换为JSON

时间:2018-12-23 11:12:34

标签: java json angular6

我有一个Java后端,可以接受这样的json响应:

{         “帐户”:[{           “ t1_Title”:“ title1”         },{           “ t1_Title”:“ title2”         }]      }

在Angular中,我将数组发送到服务以发送到后端。 如何将“帐户”添加到数组,并保持上面结构的结构像这样:

    (2) [Array(1), Array(1)]
     0: [{…}]
     1: [{…}]
     length: 2

1 个答案:

答案 0 :(得分:0)

只需将数组值绑定到新对象中的accounts键。

示例代码:

let myArray = [{ "t1_Title": "title1" }, { "t1_Title": "title2" }]

//build JSON
let obj = {accounts : myArray};

// print JSON
console.log(obj)