.Net Core 2.0 学习新建Core MVC 项目

2021-05-16 13:30

阅读:334

标签:image   sem   conf   一个   index   配置   service   方法   tar   

一、新建空的Core web项目

技术分享

二、在Startup文件中添加如下配置

1.  在ConfigureServices 方法中添加 services.AddMvc();MVC服务

2. app.UseMvc(routes =>
   {
        routes.MapRoute(name: "default", template: "{Controller=Home}/{action=Index}/{id?}");
   });在Configure方法添加路由

技术分享

技术分享

 三、添加Controllers文件夹

技术分享

1. 添加一个HomeControler.cs类

2. 添加代码

  技术分享

 3. 添加视图

技术分享

 

.Net Core 2.0 学习新建Core MVC 项目

标签:image   sem   conf   一个   index   配置   service   方法   tar   

原文地址:http://www.cnblogs.com/haosit/p/7747116.html


评论


亲,登录后才可以留言!