使用 Spring MVC 进行动态表单和数据绑定

在我的Spring MVC应用程序中,我需要实现一个动态问卷表单:我有N个问题,每个我有3个选项。

所以在我的页面中,我会有这样的东西:

|    Question 1   |   1   |   2   |   3   |
|    Question 2   |   1   |   2   |   3   |
|    Question 3   |   1   |   2   |   3   |
|    ...          |   1   |   2   |   3   |
|    Question N   |   1   |   2   |   3   |

问题存储在数据库中,对于选项,我将使用单选按钮。我将使用标记来创建动态行,但我不知道如何在此方案中发布数据和处理绑定...forEachModelAttribute

对于我的模型属性类来说,哪个可能是一个好的结构?是否可以将绑定用于具有 Spring MVC 的动态表单?


答案 1

在此方案中,如何发布数据和处理 ModelAttribute 绑定

你可以做到,

我正在考虑这样的课程:Question

public class Question {
    private String question;
    private Map<Integer,Option> optionMap;
    private Integer selectedOptionKey;
        //getters and setters
}

和类像:Option

public class Option {

    private Integer optionKey;
    private String optionText;

    //getters and setters
}

和一个用于表单绑定的类,如下所示:QuestionsModel

public class QuestionsModel {
    private Map<Integer, Question> questionMap;
    //getters and setters
}

和控制器类处理程序方法内部,填充问题,例如:GET

@RequestMapping(method=RequestMethod.GET)
    public String index(Model model){                
    Option optionA = new Option(1, "A");
    Option optionB = new Option(2, "B");
    Option optionC = new Option(3, "C");

    Map<Integer, Option> optionMap = new HashMap<Integer, Option>();
    optionMap.put(optionA.getOptionKey(),optionA);
    optionMap.put(optionB.getOptionKey(),optionB);
    optionMap.put(optionC.getOptionKey(),optionC);

    Question question1 = new Question("A Q", optionMap, 1);
    Question question2 = new Question("B Q", optionMap, 1);
    Question question3 = new Question("C Q", optionMap, 1);
    Map<Integer, Question> questionMap = new HashMap<Integer, Question>();
    questionMap.put(1, question1);
    questionMap.put(2, question2);
    questionMap.put(3, question3);

    model.addAttribute("questionsModel", new QuestionsModel(questionMap));

    return "index";
}

最后在jsp页面中使用保留旧值,并呈现表单元素,例如:<form:hidden..

<c:url value="/questionPost" var="postUrl"/>

<form:form action="${postUrl}" modelAttribute="questionsModel" method="post">
    <table>
    <tr>
        <th>Question</th>
        <th>Options</th>        
    </tr>   
    <c:forEach items="${questionsModel.questionMap}" var="currQue" varStatus="queIndex">
        <tr>
            <td>
                <form:hidden path="questionMap[${queIndex.count}].question"/>
                <label>Question:</label><c:out value="${currQue.value.question}"/><br/>
            </td>
            <td>
            <c:forEach items="${currQue.value.optionMap}" var="opt" varStatus="optionIndex">
                <form:hidden path="questionMap[${queIndex.count}].optionMap[${optionIndex.count}].optionText"/>
                <form:hidden path="questionMap[${queIndex.count}].optionMap[${optionIndex.count}].optionKey"/>

                <form:radiobutton path="questionMap[${queIndex.count}].selectedOptionKey"
                    value="${opt.value.optionKey}" label="${opt.value.optionText}"/>

            </c:forEach>

             </td>
        </tr>
    </c:forEach>
    </table>
    <input type="submit"/>
</form:form>

您可以在POST中接收绑定和模型,例如:

@RequestMapping(value="/questionPost", method=RequestMethod.POST)
public String indexPost(@ModelAttribute("questionsModel") QuestionsModel questionModel, BindingResult result){
    System.out.println(questionModel.getQuestionMap());

    return "redirect:/";
} 

答案 2

这个类是我的模型属性

public class Questionnaire {
    private List<Question> questions = new ArrayList<>();
    private List<Answer> answers = new ArrayList<>();

    // set + get
}

和:

public class Question {
    private int id;
    private String text;

    // set+ get

}

public class Answer {
    private int questionId;
    private int value;

    // set + get
}

在将其放入模型之前,我填充列表。questions

在我的页面中,我使用以下代码:

<c:forEach items="${questionnaire.questions}" var="question"
    varStatus="gridRow">
    <div>
    ${question.text} 
        <s:bind path="questionnaire.answers[${gridRow.index}].questionID">
            <input type="hidden" name="${status.expression}"
                id="${status.expression}" value="${question.id}" />
        </s:bind>
        <s:bind path="questionnaire.answers[${gridRow.index}].value">
            <sf:radiobuttons path="${status.expression}"
                items="${radio_button_options}" />
        </s:bind>
    </div>
</c:forEach>

发布此表单,我在控制器中获得了一个完全填充的实例。questionnaire

注意我发现这篇文章对解决我的问题非常有帮助。


推荐