将两个模型传递到一个视图时出现问题

本文关键字:视图 一个 问题 两个 模型 | 更新日期: 2023-09-27 18:21:21

我想使用 ViewModel 将两个模型传递给一个视图

我的模型 :

     public class Candidat
     {
     public int Id { set; get; }
     public string num_cin    { set; get; }
     public ICollection<Poste> postes { get; set; }
     }
     public class Poste
     {
     public int Id { set; get; }
     public string poste_name {set;get}
     public List<Candidat> candidats {set;get;}
      }
    public class PosteCandidatViewModel
      {
    public Candidat candidat { get; set; }
    public Poste poste { get; set; }
       }

控制器操作:

    [HttpPost]
    public ActionResult Index( Poste poste,string num_cin)
    {
        if (ModelState.IsValid)
        {
            var v = (from c in _db.Candidats
                     where c.num_cin == num_cin
                     && c.postes.Any(p => p.Id == poste.Id)
                     select c)
                    .SingleOrDefault();
            if (v != null)
            {
                return RedirectToAction("Inscription", "Candidat");
            }
            else
            {
                return RedirectToAction("index", "BureauOrdre");
            }
            }
        return View();

观点 :

        @model ProcRec.Models.PosteCandidatViewModel
        <td>@Html.TextBoxFor(model => model.candidat.num_cin)</td>
         <td><p>@Html.DropDownListFor(model => model.poste.Id,new 
           SelectList(ViewBag.Postes, "Id", "intitule_poste"),"choisir le poste")
          </p></td>

我的问题是 LINQ 查询没有给出我想要的结果(但是如果我给num_cin一些价值观 poste.id 它就是工作(

所以问题是num_cin没有下拉列表中的价值......这就像有一个空值!!!!!!!!

将两个模型传递到一个视图时出现问题

更改 POST 方法签名以接受模型,并访问模型属性

[HttpPost]
public ActionResult Index(PosteCandidatViewModel model)
{
  Poste poste  = model.Poste;
  string num_cin = model.Candidat.num_cin;

参数 string num_cin 为 null 的原因是@TextBoxFor(model => model.candidat.num_cin)生成尝试映射到包含属性num_cin的属性candidat<input type="text" name="candidat.num_cin" ... />。或者,UPI 可以使用

[HttpPost]
public ActionResult Index( Poste poste, [Bind(Prefix="candidat")]string num_cin)
{

请注意,如果ModelState无效,则需要重新分配在 DropDownListFor() 中使用的ViewBag.Postes的值

if (ModelState.IsValid)
{
  ....
}
ViewBag.Postes = // set the value here before returning the view
return View(model);