我需要将一个复杂的对象从视图页面传递给Spring控制器。我正在尝试使用modelattribute(查看页面是使用Thymeleaf和HTML构建的)。
我的问题是,对象是作为字符串而不是实际对象传递的,这会导致控制器端的转换异常。在下面,例如“category”是一个复杂的对象,它包含一个列表,一个数组,一个字符串和其他对象作为变量。类别作为字符串而不是对象本身传递。如何将此对象传递给控制器?
@Controller
public class QController extends WZController{
@RequestMapping(value = "/refreshfacets")
public String refreshfacets(HttpServletRequest request, HttpServletResponse response, Model model,
@ModelAttribute("refreshFacetsRequest") refreshFacetsRequestDTO refreshfacetsrequest) throws Exception {
Map<String, Object> responseMap = new HashMap<String, Object>();
ProductSearchResult productsearchresult = new ProductSearchResult();
//super.refreshFacets(request, response, model, productsearchresult);
return XXXX;
}
}
public class refreshFacetsRequestDTO {
private static final long serialVersionUID = 1L;
private Category category;
private String state;
private String program;
private String subject;
private String year;
private String price;
// Constructor, getter, setter methods;
}
<div th:remove="tag">
<form method="post" id="form1" th:action="@{/refreshfacets}" th:object="${refreshFacetsRequest}">
<input type="hidden" id="category" name="category" th:if="${category}" th:value="${category}"/>
<input type="text" id="state" name="state" th:if="${state}" th:value="${state}"/>
<input type="text" id="program" name="program" th:if="${program}" th:value="${program}"/>
<input type="text" id="subject" name="subject" th:if="${subject}" th:value="${subject}"/>
<input type="submit" th:attr="onsubmit=${'doAjaxPost()'}"></input>
</form>
</div>
请就此提出建议。传递对象的模型属性以外的任何其他选项也没问题。如果是这样,请详细说明您的其他选择。
答案 0 :(得分:1)
您似乎想要将Thymeleaf
的选择器表达式与th:object="${refreshFacetsRequest}"
一起使用。对此的表示法是*{someField}
。相应地更改元素
<input type="hidden" id="category" name="category" th:if="*{category}" th:value="*{category}"/>
上述内容将解析为${refreshFacetsRequest.category}
。
修改强>
从View到Controller,您正在做的是让您的浏览器向HTTP服务器(您的servlet容器)发送HTTP请求。这里没有对象的概念。名称为<input>
的{{1}}字段将作为HTTP POST中的请求参数传递。
Spring通常足够聪明,可以从请求参数转换为对象,但它需要一些信息。 category
是枚举吗?如果是,Spring将尝试使用Category
进行转换。如果它是一个类,它将尝试使用其他具有与Category.valueOf(requestParam)
类的字段匹配的名称的请求参数来实例化它并将其设置在您声明为Category
的对象中{1}}。
我不太明白你的意思检索到的值是一个字符串值i 。是否出现错误消息?