模态形式使我的屏幕被阻止

时间:2018-05-21 04:16:03

标签: javascript jquery asp.net-mvc forms modal-dialog

您有以下模式窗体执行我的控制器的POST方法

modal

我的观点:

<div class="modal fade" id="agregarProducto">
    <div class="modal-dialog" role="document">
        <div class="modal-content">
            <div class="modal-header"> 

            </div>
            <div class="modal-body">
                <form id="myForm">
                    <label>Agregar Cantidad</label>
                    <input type="checkbox" id="idcheckcantidad" />                        
                    <input type="text" class="form-control" name="cantidad" id="idcantidad" disabled="disabled"  />                      
                    <label>Codigo Producto</label> 
                    <input type="text" class="form-control" name="codigoproducto" id="idcodigoproducto" autofocus="true" />
                </form>               

            </div>
            <div class="modal-footer">
                <input type="submit" value="Agregar Material" class="btn btn-primary" id="btnSubmit" />
                <button type="button" class="btn btn-secondary" data-dismiss="modal">Cerrar</button>
            </div>
        </div>
    </div>
</div>

执行post方法的javascript是以下内容......

<script>
        $(document).ready(function () {
            $("#btnSubmit").click(function () {              
                var myformdata = $("#myForm").serialize();

                $.ajax({
                    type: "POST",
                    url: "/Despachos/AgregarProducto",
                    data: myformdata,
                    success: function () {                     
                        $("#agregarProducto").modal("hide");                      
                    }
                })
            })
        })
    </script>

问题是,当我完成执行Agregar Producto方法时,我的屏幕被阻挡且天黑了

screenshot

我的控制员:

[HttpPost]
    public ActionResult AgregarProducto(int codigoproducto, int? cantidad)
    {          
            //CONSULTO LOS PRODUCTOS QUE EXISTEN EN EL DETALLE
            var despachotmp = db.DespachoDetalleTmps.Where(o => o.Email == User.Identity.Name && o.Kn_CodigoProducto == codigoproducto).FirstOrDefault();

            if (despachotmp == null)
            {
                //BUSCO EL PRODUCTO
                var producto = db.Productoes.Find(codigoproducto);

                if (producto == null)
                {
                    ViewBag.Error = "Debe Seleccionar un Producto o Material Válido";
                    return RedirectToAction("Create");
                }

                if (cantidad == null)
                {
                    despachotmp = new DespachoDetalleTmp
                    {
                        v_Nombre = producto.v_Nombre,
                        Kn_CodigoProducto = producto.Kn_CodigoProducto,
                        Email = User.Identity.Name,
                        d_Cantidad = 1,
                    };

                    db.DespachoDetalleTmps.Add(despachotmp);

                }

                if (cantidad != null)
                {
                    despachotmp = new DespachoDetalleTmp
                    {
                        v_Nombre = producto.v_Nombre,
                        Kn_CodigoProducto = producto.Kn_CodigoProducto,
                        Email = User.Identity.Name,
                        d_Cantidad = Convert.ToInt16(cantidad),
                    };

                    db.DespachoDetalleTmps.Add(despachotmp);
                }
            }

            else
            {
                if (cantidad == 0)
                {
                    despachotmp.d_Cantidad += 1;
                    db.Entry(despachotmp).State = EntityState.Modified;
                }

                if (cantidad != 0)
                {
                    despachotmp.d_Cantidad += Convert.ToInt16(cantidad);
                    db.Entry(despachotmp).State = EntityState.Modified;
                }
            }                      
            db.SaveChangesAsync();               
            return RedirectToAction("Create");
    }

我做错了什么?为什么我会这样做? 对我有什么帮助吗?

3 个答案:

答案 0 :(得分:1)

问题在于你的脚本。您可以使用以下代码关闭模式。

$("#agregarProducto").hide(); 

您可以按照以下代码:

<script>
        $(document).ready(function () {
            $("#btnSubmit").click(function () {              
                var myformdata = $("#myForm").serialize();

                $.ajax({
                    type: "POST",
                    url: "/Despachos/AgregarProducto",
                    data: myformdata,
                    success: function () {                     
                        $("#agregarProducto").hide();                      
                    }
                })
            })
        })
    </script>

试试这段代码。祝你好运!

答案 1 :(得分:0)

看起来模型没有正常收缩,

尝试以下选项将其关闭

$('#modal').modal('toggle'); 

$('#modal').modal().hide();

应该有用。

但如果没有其他工作可以直接调用模态关闭按钮:

$("#modal .close").click()

答案 2 :(得分:0)

尝试以下最佳做法:

//OPEND
$('#modal').modal('show');
//HIDE
$('#modal').modal('hide');