1

在我的 ASP MVC 3 站点中,当用户Sole ProprietorProducer Type下拉框中选择值时,名称为的字段集中的所有值DSS Specific都将被取消,并且在重新呈现视图时不再显示。

单步执行代码时,我可以看到在用户点击后save,模型对象会正确评估Producer Type,将适当的字段设置为null,并且在呈现视图时,我可以看到Model对象中的字段实际上null是他们需要的是。

但是,视图仍会显示在点击 之前该字段中的值save,并且尽管传递给它的对象null包含这些字段的值,但仍会显示这些值。我还点击了十几次刷新,以确保该页面不是简单地缓存在浏览器中。

控制器

当模型对象第一次传回控制器时,它通过一个名为ReformatFields

    [HttpPost]
    public ActionResult Edit(Monet.Models.AgentTransmission agenttransmission)
    {
        //redirect if security is not met.  
        if (!Security.IsModifier(User)) return RedirectToAction("Message", "Home", new { id = 1 });

        //Tax Id security
        ViewBag.FullSSN = Security.IsFullSsn(User);

        try
        {
            agenttransmission = AgentTransmissionValidator.ReformatFields(agenttransmission);

这是ReformatFields确定是否使特定字段无效的代码。然后将模型对象分配回agenttransmission控制器中的上述对象。

        //TODO:  blank out DSS specific fields if not a sole proprietor!
        if (!agt.ProducerType.Equals("S") || !agt.DRMrole.Equals("Sole Proprietor"))
        {
            agt.C8CharAgentCAB0State = null;
            agt.C8CharAgentCAB0MktDiv = null;
            agt.CONCode = null;
            agt.BundleCode = null;
            agt.LifeRegion = null;
            agt.LifeField = null;
            agt.AGYMGMT = null;
            agt.INDSGC = null;
            agt.PENSGC = null;
            agt.GRPSGC = null;
            agt.LMKSGC = null;
            agt.LDT = null;
            agt.GCASBNS = null;
            agt.GCOMMSN = null;
            agt.GPROFBN = null;
            agt.INDSplits = null;
            agt.DSTSGC = null;
            agt.ANNCommCode = null;
            agt.LifeEAPercent = null;
            agt.VARPercent = null;
            agt.OwnerMaster = null;
            agt.LifeMaster = null;
            agt.CampaignMaster = null;
            agt.RelationshipEffDate = null;
            agt.RelationshipDistCode = null;
        }
        return agt;
    }

保存后,agenttransmission模型对象然后被发送回视图

                db.SaveChanges();
                DisplayPrep();
                agenttransmission.displayChannel = getDisplayChannel(agenttransmission);
                agenttransmission.FormattedReferenceNumber =
                    ReferenceConversion.UnobAndFormat(agenttransmission.ReferenceNumber, "S");
                return View(agenttransmission);
            }

看法

从下面的屏幕截图中可以看到,Model传递回视图的对象的值为nullforCONCodeBundleCode

在此处输入图像描述

但是,页面呈现与之前相同的值。

在此处输入图像描述

这不是页面缓存值的问题,正如您在此处看到的那样,HTML 实际上是用这些值呈现的

在此处输入图像描述

这是这两个字段的视图中的实际代码

    <div class="M-editor-label">
        @Html.LabelFor(model => model.CONCode)
    </div>
    <div class="M-editor-field">
        @Html.TextBoxFor(model => model.CONCode, new { maxlength = 2 })
        @Html.ValidationMessageFor(model => model.CONCode)
    </div>

    <div class="M-editor-label">
        @Html.LabelFor(model => model.BundleCode)
    </div>
    <div class="M-editor-field">
        @Html.TextBoxFor(model => model.BundleCode, new { maxlength = 6 })
    </div>

我意识到这是一个复杂的过程,所以如果我遗漏了您认为有帮助的任何内容,请告诉我。谢谢!

4

1 回答 1

3

当您执行 POST 时,所有数据都存储在ModelState. 将模型中的属性设置为 null 然后在视图中返回该模型不会在视图中将它们清空,因为它们仍在ModelState. 您可以重定向到 GET 操作并以另一种方式保存此数据或清除您的 ModelState:

ModelState.Clear();

Html 助手,例如@Html.TextBoxFor从 ModelState 中提取数据,而不是直接从模型类中提取数据,这就是为什么即使您将它们设置为 null,这些值仍然出现的原因。

于 2013-06-11T19:51:21.513 回答