Asp.net MVC绑定到查看模型

时间:2016-05-13 11:34:49

标签: c# asp.net asp.net-mvc dnx

现状:从ASP.net MVC开发开始,来自MVVM应用程序开发我正在努力将视图与视图模型/控制器绑定。我从一个空项目开始,尝试创建模型,视图模型,控制器和视图。启动项目我得到一个“500内部服务器错误”,但不明白什么是错误的(输出窗口中没有错误)。我只是无法理解视图如何实际绑定到视图模型(可能是因为我在MVVM中想得太多)。

我目前拥有的内容:

Startup.cs:

using Microsoft.AspNet.Builder;
using Microsoft.AspNet.Hosting;
using Microsoft.Extensions.DependencyInjection;

namespace WebApplication1
{
    public class Startup
    {
        // This method gets called by the runtime. Use this method to add services to the container.
        // For more information on how to configure your application, visit http://go.microsoft.com/fwlink/?LinkID=398940
        public void ConfigureServices(IServiceCollection services)
        {
            services.AddMvc();
        }

        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app)
        {
            app.UseIISPlatformHandler();

            app.UseMvc(routes =>
            {
                routes.MapRoute(
                    name: "default",
                    template: "{controller=Sample}/{action=Index}/{id?}");
            });
        }

        // Entry point for the application.
        public static void Main(string[] args) => WebApplication.Run<Startup>(args);
    }
}

型号:

using System;

namespace WebApplication1.Models
{
    public class SomeModel
    {
        public string Title { get; set; }
        public DateTime Time { get; set; }
    }
}

视图模型:

using System;
using System.Collections.Generic;
using WebApplication1.Models;

namespace WebApplication1.ViewModels
{
    public class SampleViewModel
    {
        public IList<SomeModel> SomeModels { get; set; }

        public SampleViewModel()
        {
            SomeModels = new List<SomeModel>();
            SomeModels.Add(new SomeModel()
            {
                Time = DateTime.Now,
                Title = "Hallo"
            });
        }
    }
}

控制器:

using Microsoft.AspNet.Mvc;
using WebApplication1.ViewModels;

namespace WebApplication1.Controllers
{
    public class SampleController : Controller
    {
        //
        // GET: /Sample/
        public IActionResult Index()
        {
            return View(new SampleViewModel());
        }
    }
}

查看:

@model WebApplication1.ViewModels.SampleViewModel

<!DOCTYPE html>
<html>
<head>
    <title>Hallo</title>
</head>
<body>
    @foreach (var someModel in Model.SomeModels)
    {
        <div>@someModel.Title</div>
    }
</body>
</html>

我发现很多文章都在谈论模型绑定,但他们只讨论表单和输入。我想要的是显示一些数据,例如来自某种类型的数据库中的数据库,因此不需要在网站上发布任何日期。

有没有人在我的示例代码中看到(可能很明显的)问题?

该项目基于 ASP.net 5 MVC 6 ,使用 DNX

我已经设置了一些断点来查看控制器是否实际被调用。它是。我使用调试器的几个方法没有任何问题。此外,输出窗口不显示任何错误或某事。那样的。

1 个答案:

答案 0 :(得分:0)

GET方法的结果中缺少视图名称。而不是

return View(new SampleViewModel()); 

一定是

return View("Sample", new SampleViewModel());

我认为视图和控制器之间的连接纯粹是基于约定的。因此,名为Sample的控制器会在名为Sample的文件夹中搜索名为Sample的视图,该文件夹又是Views的子文件夹。

不确定为什么,但它以这种方式工作。