gpt4 book ai didi

java - 向 ResponseBody 对象添加附加属性

转载 作者:行者123 更新时间:2023-11-30 03:13:47 27 4
gpt4 key购买 nike

我有以下 Spring @RestController 方法

@RequestMapping(value = "/getPeople", method = RequestMethod.GET)
public List<Person> getPeople(Model model){
List<People> people = personRepo.getAllPeople();
model.addAttribute("people", people);
return people;
}

它将以下内容返回到响应正文

[
{"name":"Jim","group":1},
{"name":"Dwight","group":2},
{"name":"Stanley","group":3}
]

我可以修改此方法(通过 @Controller 方法本身,或使用 AJAX 请求)以包含 people 数组内部或外部的其他属性吗?并且不修改 Person 对象 - 以便返回的对象看起来像

{
"people":[
{"name":"Jim","group":1, "independentAttribute": "A"},
{"name":"Dwight","group":2, "independentAttribute": "B"},
{"name":"Stanley","group":3, "independentAttribute": "C"}
],
"extraAttributes":[
{"attribute1": 1,"attribute2": 2,"attribute3":3}
]
}

如果这不是有效的对象/数组语法,我很抱歉,懒洋洋地把它放在一起。

最佳答案

您可以在JSON请求的回调中修改该对象。我不熟悉 d3_json 但你可以这样做

callback : function(data){
//data is the returned List<Person> serialized to JSON
var modifiedObj = new Object();
modifiedObj.persons = data;
modifiedObj.extraAttributes = [{"attribute1": 1,"attribute2": 2,"attribute3":3}]
}

关于java - 向 ResponseBody 对象添加附加属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33090312/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com