这应该是非常基本的,但我在网上找不到任何关于它的东西,只是我似乎无法组合在一起的零碎..
我们将 Spring MVC 与 freemarker 一起使用。现在我想向我的页面添加一个表单,该表单允许我从预定义列表中选择一个值(需要在后端访问数据库)。
我的控制器:
@RequestMapping(value = "/{id}", method = RequestMethod.GET)
public ModelAndView get(@PathVariable Integer id) {
// stuff..
ModelAndView mav = new ModelAndView();
mav.addObject("targetObject", new TargetObject());
mav.addObject("options", Arrays.asList("a", "b", "c"));
mav.setViewName("someview");
return mav;
}
我找到了 freemarkers spring 支持spring.ftl
,看来我应该使用<@spring.formSingleSelect>
我尝试过的方法:
someView.ftl:
<#import "../spring.ftl" as spring />
<form action="somePath" method="POST">
<@spring.formSingleSelect "targetObject.type", "options", " " />
<input type="submit" value="submit"/>
</form>
所以 targetObject.type 似乎是由宏自动绑定的。
但是如何将我的选项放入 freemarker 序列中,以便宏可以创建选项?
现在我得到:
Expected collection or sequence. options evaluated instead to freemarker.template.SimpleScalar on line 227, column 20 in spring.ftl.
The problematic instruction:
----------
==> list options as value [on line 227, column 13 in spring.ftl]
in user-directive spring.formSingleSelect [on line 53, column 9 in productBase/show.ftl]
----------
我也试过:
<@spring.bind "${options}" />
以及更多类似的事情,但没有成功:
freemarker.core.NonStringException: Error on line 48, column 18 in someView.ftl
Expecting a string, date or number here, Expression options is instead a freemarker.template.SimpleSequence
谢谢你的帮助!