2

私の ASP MVC3 ビュー モデルは、Edit メソッドがこの特定のページを読み込むと問題なく動作しますが、ユーザーが保存をクリックしてポストバックを実行すると、2 つのコレクション オブジェクト ( List<T>) に含まれるすべての情報が失われます。何か案は?

ビューからのコードは次のとおりです。これにより、すべてのエージェント情報 (ID と状態コード) が正しく読み込まれます

    @for (int i = 0; i < Model.Fixed.Count; i++)
    {           

        if(!String.IsNullOrWhiteSpace(Model.Fixed[i].AgentId))
        {
           fixedRow++;

           if (fixedRow > 2)
           {
               var rowId = "row" + fixedRow.ToString() + "F";
               <tr id=rowId class="noSee">
                    <td>
                        @Html.DropDownListFor(model => model.Fixed[i].StateCode,
                         (SelectList)ViewBag.StateCodeList, Model.Fixed[i].StateCode)
                    </td>
                    <td>
                        @Html.EditorFor(model => model.Fixed[i].AgentId)
                        @Html.ValidationMessageFor(model => model.Fixed[i].AgentId)
                    </td>
                    @if(fixedRow > 1)
                    {
                        var send = "MoreFixed(" + (fixedRow + 1).ToString() + ");";
                        var dataId = "plus" + fixedRow.ToString() + "F;";
                        <td id=@dataId  class="more" onclick=@send>+</td>
                    }
               </tr> 
           }
           else
           {
                <tr>
                    <td>
                        @Html.DropDownListFor(model => model.Fixed[i].StateCode,
                         (SelectList)ViewBag.StateCodeList, Model.Fixed[i].StateCode)
                    </td>
                    <td>
                        @Html.EditorFor(model => model.Fixed[i].AgentId)
                        @Html.ValidationMessageFor(model => model.Fixed[i].AgentId)
                    </td>
                    @if(fixedRow > 1)
                    {
                        var send = "MoreFixed(" + (fixedRow + 1).ToString() + ");";
                        var id = "plus" + fixedRow.ToString() + "F;";
                        <td id=@id class="more" onclick=@send>+</td>
                    }

                </tr> 
           }        
        }
    }

ビューモデルのコードは次のとおりです

public class BankListViewModel
{
    public int ID { get; set; }
    public string BankName { get; set; }
    public string Tier { get; set; }
    public string SpecialNotes { get; set; }
    public string WelcomLetterReq { get; set; }

    public List<BankListAgentId> Fixed { get; set; }
    public List<BankListAgentId> Variable { get; set; }
    public List<BankListAttachments> Attachments { get; set; }

    public BankListViewModel()
    {
        //Initialize Fixed and Variable stat Lists
        Fixed = new List<BankListAgentId>();
        Variable = new List<BankListAgentId>();

        Models.BankListAgentId agentId = new BankListAgentId();

        for (int i = 0; i < 5; i++)
        {
            Fixed.Add(agentId);
            Variable.Add(agentId);                
        }

        //Initialize attachment Lists
        Attachments = new List<BankListAttachments>();
        Attachments.Add(new BankListAttachments());
    }
}

ポストバックを受け取るコントローラーメソッドです。繰り返しますが、ページが読み込まれると、 GETEdit メソッドはデータベースからすべての適切な情報を収集し、ビュー モデルを正しくビューに返します。

    [HttpPost]
    public ActionResult Edit(BankListViewModel viewModel)
    {
        if (ModelState.IsValid)
        {
            List<BankListAgentId> agentId = new List<BankListAgentId>();
            List<BankListAttachments> attachments = new List<BankListAttachments>();
            BankListMaster master = new BankListMaster();

            master = decipherViewModel(viewModel, out agentId, out attachments);

            db.Entry(master).State = EntityState.Modified;
            db.SaveChanges();


            return RedirectToAction("Index");
        }
        ViewBag.ID = new SelectList(db.BankListAgentId, "ID", "FixedOrVariable", viewModel.ID);
        return View(viewModel);
    } 

    private BankListMaster decipherViewModel(BankListViewModel viewModel, out List<BankListAgentId> agentId, out List<BankListAttachments> attachments)    
    {
        //Initialize
        BankListMaster banklistmaster = new BankListMaster();
        agentId = new List<BankListAgentId>();
        attachments = new List<BankListAttachments>();

        viewModel.BankName = banklistmaster.BankName;
        viewModel.SpecialNotes = banklistmaster.SpecialNotes;
        viewModel.Tier = banklistmaster.Tier;

        foreach (var item in viewModel.Fixed)
        {
            item.ID = viewModel.ID;
            agentId.Add(item);
        }

        foreach (var item in viewModel.Variable)
        {
            item.ID = viewModel.ID;
            agentId.Add(item); 
        }

        foreach (var item in viewModel.Attachments)
        {
            item.ID = viewModel.ID;
            attachments.Add(item);
        }

        return banklistmaster;
    }
4

2 に答える 2

1

これらの値はコントローラーに送信されません。送信されるのは、ドロップダウンが再送信するフォーム内にある場合、コレクションの値を使用してビューで作成したドロップダウンからの選択です。

于 2013-04-02T20:53:22.013 に答える