HTML5技术

Nancy之基于Nancy.Hosting.Aspnet的小Demo - Catcher8(2)

字号+ 作者:H5之家 来源:博客园 2016-01-21 17:05 我要评论( )

1 @inherits Nancy.ViewEngines.Razor.NancyRazorViewBase dynamic 2 @{ ; ; 5 } 7 h1NancyDemo/h1Nancy is a lightweight, low-ceremony, framework for building HTTP based services on .NET and Mono. The goal

1 @inherits Nancy.ViewEngines.Razor.NancyRazorViewBase<dynamic> 2 @{ ; ; 5 } > 7 <h1>NancyDemo</h1> >Nancy is a lightweight, low-ceremony, framework for building HTTP based services on .NET and Mono. The goal of the framework is to stay out of the way as much as possible and provide a super-duper-happy-path to all interactions.</p> =>Learn more &raquo;</a></p> 10 </div>

Index.cshtml

1 @inherits Nancy.ViewEngines.Razor.NancyRazorViewBase<dynamic> 2 @{ ; ; 5 } 6 <h2>@ViewBag.Title.</h2> 7 <p>Use this area to provide additional information.</p>

About.cshtml

1 @inherits Nancy.ViewEngines.Razor.NancyRazorViewBase<dynamic> 2 @{ ; ; 5 } 6 <h2>@ViewBag.Title.</h2> 7 8 <address> 9 One Microsoft Way<br /> 10 Redmond, WA 98052-6399<br /> >P:</abbr> </address> 14 15 <address> >Support@example.com</a><br /> >Marketing@example.com</a> 18 </address>

Contact.cshtml

然后F5,跑一下

     

已经能跑起来了。

下面就是结合数据库了。

八、在Models下面建两个类

Movie 2 { MovieId { get; set; } MovieName { get; set; } MovieTypeId { get; set; } DateTime MovieAddTime { get; set; } MovieType MovieType { get; set; } Movie() 14 { 15 MovieAddTime = DateTime.Now; 16 } 17 }

Movie.cs

MovieType 2 { 3 public MovieType() 4 { 5 Movies = new HashSet<Movie>(); 6 } TypeId { get; set; } TypeName { get; set; } ICollection<Movie> Movies { get; set; } 14 }

MovieType.cs

以Movie表为例,继续下面的工作。

九、由于movie表中的数据展示,抽取出应该有的视图模型

在ViewModels文件夹下面建立MovieViewModel.cs、MovieListViewModel.cs

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • 随应潮流-基于ABP+Angularjs现代化应用软件开发框架(1)-总体介绍 - 在路在的张

    随应潮流-基于ABP+Angularjs现代化应用软件开发框架(1)-总体介绍 -

    2017-04-22 08:04

  • 基于CSS的个人网页 - 汕大-吴广林

    基于CSS的个人网页 - 汕大-吴广林

    2017-04-21 12:00

  • PixiJS - 基于 WebGL 的超快 HTML5 2D 渲染引擎 - 梦想天空(山边小溪)

    PixiJS - 基于 WebGL 的超快 HTML5 2D 渲染引擎 - 梦想天空(山边小

    2017-04-12 08:02

  • 任务调度之持久化(基于Quartz.net) - 蓝建荣

    任务调度之持久化(基于Quartz.net) - 蓝建荣

    2017-03-28 12:03

网友点评
s