gpt4 book ai didi

c# - ASP.NET MVC 5 View 无法访问模型属性

转载 作者:太空宇宙 更新时间:2023-11-03 18:57:56 27 4
gpt4 key购买 nike

当我尝试使用 @Model.property 时,我的 ViewModel 中的所有属性都没有显示,因此我无法选择或显示任何内容。我在谷歌上搜索过,读到重新启动 Visual Studio 会有所帮助,但事实并非如此。我也重建了解决方案等,但似乎无济于事。给了什么?

Controller

public ActionResult GebruikersList()
{
List<Gebruiker> gebruikers = db.Gebruikers.ToList();
//List<GebruikerModel> gebruikersVM = Mapper.Map<List<Gebruiker>, List<GebruikerModel>>(gebruikers);

GebruikerModel singleUser = Mapper.Map<Gebruiker, GebruikerModel>(db.Gebruikers.FirstOrDefault());

return View(singleUser);
}

查看:

@model alina1617.Models.GebruikerModel

@{
ViewBag.Title = "GebruikersListTest";
}

<h2>GebruikersList</h2>


<p>
@Model.
</p>

View 模型:

public class GebruikerModel
{
String Gebruikersnaam { get; set; }
String Wachtwoord { get; set; }

// Om automapper automatisch te laten converteren simpelweg klassenaam (FaculteitModel) + property (Naam) gebruiken
String FaculteitModelNaam { get; set; }
String InstellingModelMNaam { get; set; }

}

public class FaculteitModel
{
String Naam { get; set; }
}

public class InstellingModel
{
String naam { get; set; }
}

最佳答案

如果您的模型属性是公开的,您可以在 View 中访问它们。希望这会有所帮助。

public class GebruikerModel
{
public String Gebruikersnaam { get; set; }
public String Wachtwoord { get; set; }

// Om automapper automatisch te laten converteren simpelweg klassenaam (FaculteitModel) + property (Naam) gebruiken
public String FaculteitModelNaam { get; set; }
public String InstellingModelMNaam { get; set; }

}

public class FaculteitModel
{
public String Naam { get; set; }
}

public class InstellingModel
{
public String naam { get; set; }
}

关于c# - ASP.NET MVC 5 View 无法访问模型属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41228848/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com