我在Bootstrap Modal中有一個窗體,我希望我的Spring MVC控制器能夠聽到這個窗體。我的問題是模式不生成href,因爲它在當前頁面內,所以我不能在我的Spring MVC控制器中映射模式。如何將Bootstrap Modal映射到Spring MVC控制器
我需要它,因爲我想從bindingresult對象中顯示錯誤。我怎樣才能做到這一點?
這是我的模態:http://www.bootply.com/zerZIYpNAF假設它位於index.jsp中,所以假想路徑將是/index#myModal.jsp或類似的東西。
@RequestMapping(value="/send", method = RequestMethod.GET)
public String get(Dummybean bean){
return "??"; //index#myModal
}
@RequestMapping(value="/send", method = RequestMethod.POST)
public String post(@Valid @ModelAttribute("dummy") DummyBean bean, BindingResult bindingResult){
if(bindingResult.hasErrors()){
return "??"; //index#myModal
}
//do something
}
public class DummyBean{
@NotNull
private String name;
public String getName() {
return username;
}
public void setName(String name) {
this.name = name;
}