3

im using spring mvc framework with thymeleaf template engine the problem is , i have 1 page with multiple check box iterated sing thymeleaf th:each iterator.When i clicked multiple check boxes i want to pass check box values to the controller method..

html content

<table> 
<tr th:each="q : ${questions}">
 <h3 th:text="${q.questionPattern.questionPattern}"></h3> 
<div>
 <p >
 <input type="checkbox" class="ads_Checkbox" th:text="${q.questionName}" th:value="${q.id}" name="id"/>
 </p>
 </div>
 </tr>
 </table> 

*Controller*

 @RequestMapping(value = Array("/saveAssessment"), params = Array({ "save" }))
  def save(@RequestParam set: String, id:Long): String = {
  var userAccount: UserAccount = secService.getLoggedUserAccount
    println(userAccount)
    var questionSetQuestion:QuestionSetQuestion=new QuestionSetQuestion
        var questionSet: QuestionSet = new QuestionSet
    questionSet.setUser(userAccount)
    questionSet.setSetName(set)
    questionSet.setCreatedDate(new java.sql.Date(new java.util.Date().getTime))
   questionSetService.addQuestionSet(questionSet)
     var list2: List[Question] = questionService.findAllQuestion
    var limit=list2.size
     var qustn:Question=null
    var a = 1;
     for( a <- 1 to limit ){
         println(  a  );
      qustn=  questionService.findQuestionById(a)
     questionSetQuestion.setQuestion(qustn)
    questionSetQuestion.setQuestionSet(questionSet)
    questionSetQuestion.setCreatedDate(new java.sql.Date(new java.util.Date().getTime))

    questionSetQuestionService.addQuestionSetQuestion(questionSetQuestion) } "redirect:/teacher/Assessment.html" }
4

2 回答 2

5

我认为你几乎拥有它。使用复选框,您只能使用表单发送回一条信息......这就是价值。因此,如果您试图确定在用户单击提交按钮时选中了哪些复选框,那么我将让所有复选框都使用一个名称......比如“id”(就像你一样)。值是问题的实际 id(再次像你一样)。提交后,“id”将是一个字符串数组,其中包含已选中复选框的所有值。

所以你的控制器方法需要将名为“ids”的参数映射到参数“id”,它是一个字符串[]。现在对于每个 id,您可以调用 questionService.findQuestionById。

(我不是 Groovy 大师,所以没有代码示例 sry :)

于 2013-06-04T22:11:20.293 回答
4

我已经将 JSTL 与 JSP 一起使用,而 thymeleaf 是新事物。我阅读了THYMELEAF文档。

有一个部分解释了多值复选框。

<input type="checkbox" 
     class="ads_Checkbox" 
     th:text="${q.questionName}" 
     th:value="${q.id}" name="id"/>

在上面的代码中,我们没有将值绑定到命令对象的字段。而是尝试这样做

<input type="checkbox" 
     class="ads_Checkbox" 
     th:text="${q.questionName}" 
     th:field="*{selectedQuestions}" 
     th:value="${q.id}" />

这里selectedQuestions是 spring 命令对象中存在的数组对象。

于 2013-06-03T20:19:13.327 回答