1

在这里快速提问(希望如此)。我正在开发一个 web 应用程序,并尝试使用 ajax 进行提交后提交。这很好,第一次......在同一会话期间的第二次尝试中,发送到服务器的模型属性是第一个。不知何故,即使我发送了模型的新实例,它也没有被重置。让我添加一些代码:

控制器:

    @RequestMapping(value = "/productores/new.html", method = RequestMethod.GET)
public ModelAndView newForm(){      
    log.info("Cargando form de productor...");  
    return new ModelAndView("/secure/Productor","productor",new Productor());       
}

@RequestMapping(value = "/productores/new.html",method = RequestMethod.POST)
public ModelAndView processNewForm(
        @ModelAttribute("productor") Productor prod, 
        BindingResult result, SessionStatus status){

    log.info("Procesando nuevo productor.");    
    prodServ.guardar(prod);
    return null;

}

Productores.jsp(这个页面包含一个显示所有生产者的网格,并有一个按钮来显示一个表单以添加一个,作为模式对话框。这是使用 jquery ui 对话框。)

    function showDialog() {
    var tag = $("<div id='modalForm'></div>");
    $.ajax({
        type : "GET",
        url : "/SegurosWeb/productores/new.html",
        success : function(response) {
            if (typeof response == "object" && data.html) { //response is assumed to be JSON
                tag.html(response.html).dialog({
                    modal : options.modal
                }).dialog("open");
            } else { //response is assumed to be HTML
                tag.html(response).dialog({
                    modal : true,
                    position: ["center", "center"],
                    width : 1000
                }).dialog("open");
            }
        }
    });
}

Productor.jsp(这是将在模式对话框中弹出的表单)

            <form:form id="formProductor" method="POST" commandName="productor"
    class="formgeneral" onsubmit="doAjaxPost('/SegurosWeb/productores/new.html');return false;">
    <div id="row">
        <div id="separador">
            <p class="separador">Datos del Productor</p>
        </div>
        <ul>
            <li><form:label path="apellido">Apellido:</form:label> <form:input
                    path="apellido" type="text" class="formL" required="required" /></li>
            <li><form:label path="nombre">Nombre:</form:label> <form:input
                    path="nombre" type="text" class="formL" required="required"></form:input></li>
            <li><form:label path="matricula">Matrícula:</form:label> <form:input
                    path="matricula" type="number" class="formM" pattern="[0-9]{9}"
                    title="Ingrese la matricula del Productor (solo numeros)" /></li>
        </ul>
    </div>
    <!--fin de row-->
    <div id="botoneraform">

Ingresar</button> --> Ingresar Cancelar

和里面的ajax帖子

<script type="text/javascript">
function doAjaxPost(toUrl) {
    var a=$("#formProductor").serialize();
    $.ajax({
        type : "POST",
        url : toUrl,
        data: a,
        success : function(response) {
            $('#modalForm').dialog('close');
            $('#grid').trigger('reloadGrid');
        },
        error : function(jqXHR, textStatus, errorThrown) {
            alert(jqXHR + " : " + textStatus + " : " + errorThrown);
        }
    });

}

我是否需要在流程中的某个地方专门销毁模型属性才能重置它?还是我在这里做的很糟糕?

提前致谢!

4

1 回答 1

0

Model属性仅在一个请求期间“活动”。在处理期间,它们被添加到HttpServletRequest属性中,然后可用于 JSP。

当您@ModelAttribute像在此处一样在处理程序方法的参数列表中使用时

public ModelAndView processNewForm(
        @ModelAttribute("productor") Productor prod, 
        BindingResult result, SessionStatus status){

Spring 尝试从您的请求参数创建对象。您的Productor.jsp, 即中有许多这样的。<form:input>元素。每次你做一个 POST 时,它都会使用这些来创建一个Productor对象。

于 2013-10-02T20:32:27.057 回答