gpt4 book ai didi

json - 在 Spring Controller 方法中返回 HTML 或 JSON

转载 作者:行者123 更新时间:2023-12-04 23:53:05 32 4
gpt4 key购买 nike

我想知道根据 Spring Controller 方法的逻辑在同一方法中返回 HTML 或 JSON 的正确方法。我已经在 .NET 中完成了此操作,只需要知道如何在 Spring 中执行此操作即可。

    UserModel user = new UserModel();       
user.setFirstName("Michael");
user.setLastName("Flynn");

model.getList().add(user);
model.setSearchTerm("test");

if(true)
{
return new ModelAndView("controls/tables/users", "model", model);
}
else
return model;

最佳答案

我最近需要弄清楚这个问题并且很幸运 this来自 SpringSource 的博文。

关于json - 在 Spring Controller 方法中返回 HTML 或 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4902881/

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