如何检查 MVC 3 视图模型是否有一些数据?

发布于 2024-10-24 00:18:27 字数 653 浏览 2 评论 0原文

我的观点是使用WebGrid来显示网格。

如果模型有一些数据,它会很好地工作,但如果模型没有数据,则 WebGrid 会给出异常。

我尝试检查是否 Model != null 但这只是让 IF 中的代码执行。还尝试进行检查以查看if (Model.Count() > 2),这只是给了我一条消息,说“指定的资源不存在。”

在这两个条件中的任何一个条件下,IF 内部的代码都会被执行。有没有一种简单的方法可以检查传入的信息以查看模型是否有任何行?

@model IEnumerable<Selftestware.Storage.Models.TestFormat>

@section content {
    <div id="content">

    @if (    Model  != null) { 

        var grid = new WebGrid(
             source: Model,
             defaultSort: "Name", 
             canPage: true, 
             canSort: true,
             rowsPerPage: 20);

My view is using WebGrid to display a grid.

It works good if the Model has some data but if the model comes with no data then the WebGrid gives and exception.

I tried doing a check if Model != null but that just let my code within the IF execute. Also tried doing a check to see if (Model.Count() > 2) and that just gave me a message saying "The specified resource does not exist.".

With either of those two conditions the code inside of the IF executed. Is there a simple way that I can check the information being passed in to see if the Model has any rows?

@model IEnumerable<Selftestware.Storage.Models.TestFormat>

@section content {
    <div id="content">

    @if (    Model  != null) { 

        var grid = new WebGrid(
             source: Model,
             defaultSort: "Name", 
             canPage: true, 
             canSort: true,
             rowsPerPage: 20);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

给不了的爱 2024-10-31 00:18:27

您可以发送列表操作 emmty 列表示例:

public ActionResult List()
{
//hear check if is null 
return View(new List<yourModel>());
}

You can send in List action emmty list example:

public ActionResult List()
{
//hear check if is null 
return View(new List<yourModel>());
}
追我者格杀勿论 2024-10-31 00:18:27
  public static class YourWelcome{
     public static bool IsNullOrHasNullProperties(this object model){
         if(model == null) { 
             return true;
         }
         return model.GetType()
              .GetProperties(BindingFlags.Public|BindingFlags.Instance)
              .Where(propertyInfo => !propertyInfo.PropertyType.IsValueType)
              .Any(propertyInfo => propertyInfo.GetValue(model,null) == null);
     }
     public static bool IsNullOrEmpty<T>(this IEnumerable<T> enumerable){
         return enumerable == null || !enumerable.Any();
     }
  }
  public static class YourWelcome{
     public static bool IsNullOrHasNullProperties(this object model){
         if(model == null) { 
             return true;
         }
         return model.GetType()
              .GetProperties(BindingFlags.Public|BindingFlags.Instance)
              .Where(propertyInfo => !propertyInfo.PropertyType.IsValueType)
              .Any(propertyInfo => propertyInfo.GetValue(model,null) == null);
     }
     public static bool IsNullOrEmpty<T>(this IEnumerable<T> enumerable){
         return enumerable == null || !enumerable.Any();
     }
  }
月依秋水 2024-10-31 00:18:27

当模型没有任何数据时,这就是我使用网络网格处理场景的方式。

if (Model.Results.Count() > 0)
 {

     <div id="grid">


        @grid.GetHtml()

     </div> 
}
else
{
    <p>No Results Found.</p>
}

This is how I handled a scenaro with my webgrid when the model did not have any data.

if (Model.Results.Count() > 0)
 {

     <div id="grid">


        @grid.GetHtml()

     </div> 
}
else
{
    <p>No Results Found.</p>
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文