4

我使用 Web 表单开发网站,现在我有一个项目,我在其中使用 MVC3 框架和 Rzor。我的问题是关于 MVC 中的一些基本设计模式。我有一个网页,在左侧我将从 SQL 表中提取类别,在中心我将查询另一个 Sql 表,以及整个页面的更多内容。

所以我的问题是......将数据带入一个网页的最佳方式是什么,所有这些查询都是完全独立的,我是否需要为每个查询创建新的模型?或者有更好的方法吗?

在 WebForms 中,我使用了用户控件,其中每个用户控件都有自己的设计和 Sql 查询。我听说过在 MVC 中使用部分视图,但我不确定,我想我很难理解如何使用不同的查询将数据带入一个网页并在网页上显示输出。

谢谢

4

1 回答 1

7

您应该创建一个ViewModel. 看看下面的更新

这是一个代表您的页面的模型。您要在视图中显示的元素应该存在于您的 ViewModel 中。您将在控制器中填充 ViewModel 并将它们显示在页面上。

我写了一个购物网站页面的示例,左侧是类别,中间是产品。这两个实体将存在于不同的表中。

例子:

class MainPageViewModel
{
  //this data is from a different table.
  //and goes on the left of the page
 public string Categories {get; set;}
  //this data is also from a different table.
  //and goes on the center of the page
 public List<Products> Products {get; set;}
}

在您的控制器中:

public class HomeController : Controller
{
    // GET: /Home/
    public ActionResult Index()
    {
        MainPageViewModel vm = new MainPageViewModel();
        vm.Categories = GetCategories();
        //use the GetProducts() to get your products and add them.
        vm.Products.Add(...); 
        return View(vm); //pass it into the page
    }
    string[] GetCategories()
    {
     DataTable data = GetDataFromQuery("SELECT * FROM Categories WHERE..");
     //convert the data into a string[] and return it..
    }
    //maybe it has to return something else instead of string[]? 
    string[] GetProducts()
    {
     DataTable data = GetDataFromQuery("SELECT * FROM Products WHERE..");
     //convert the data into a string[] and return it..
    }
    DataTable GetDataFromQuery(string query)
    {
        SqlDataAdapter adap = 
             new SqlDataAdapter(query, "<your connection string>");
        DataTable data = new DataTable();
        adap.Fill(data);
        return data;
    }  
}

然后在您的视图中适当地显示它:

@model MainPageViewModel 

@{ ViewBag.Title = "MainPage"; }

<div id="left-bar">
  <ul>
    @foreach (var category in Model.Categories)
    {
        <li>@category</li>
    }
  </ul>
</div>
<div id="center-content">
    <ul>
    @foreach (var product in Model.Products)
    {
        <li>@product.Name</li>
        <li>@product.Price..</li>
        .....
    }
  </ul>  
</div>

更新

这是关于您提到您的数据库表和列定期更改的评论。

我不能肯定,但也许你不应该每天都制作这样的表格,也许你可以拥有更好的数据库设计,或者 RDBMS 不适合你,你应该研究一下 NoSql数据库(如MongoDB

不过,如果您继续使用上面的代码,我建议将其放入自己的数据层类中。

还可以看看Dapper,它是一个非常薄的数据访问层,它只使用 sql 查询或存储过程从数据库中获取对象。(正是您所需要的)它是由 stackoverflow 制作和使用的。

于 2012-09-02T06:07:47.550 回答