作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在构建一个用于输入足球比赛结果的 JSP 页面。我得到了一个 Unresolved 游戏列表,我想这样列出它们:
team1 vs team4
[hidden field: game id]
[input field for home goals]
[input field for away goals]
team2 vs team5
[hidden field: game id]
[input field for home goals]
[input field for away goals]
最佳答案
Spring jar bind indexed properties ,因此您需要在命令中创建游戏信息对象列表,例如:
public class Command {
private List<Game> games = new ArrayList<Game>();
// setter, getter
}
public class Game {
private int id;
private int awayGoals;
private int homeGoals;
// setters, getters
}
@RequestMapping(value = "/test", method = RequestMethod.POST)
public String test(@ModelAttribute Command cmd) {
// cmd.getGames() ....
return "...";
}
games[0].id
games[0].awayGoals
games[0].homeGoals
games[1].id
games[1].awayGoals
games[1].homeGoals
games[2].id
games[2].awayGoals
games[2].homeGoals
....
关于spring - 如何在 JSP 中绑定(bind)动态字段列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12123432/
我是一名优秀的程序员,十分优秀!