码迷,mamicode.com
首页 > Web开发 > 详细

初识MVC Core(一)

时间:2019-03-18 01:36:41      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:依赖   sed   async   原理   col   developer   login   syn   star   

1.新建一个Mvc Core项目

技术图片

技术图片

注:刚开始依赖项是有黄色三角形,等待安装

技术图片

 

2.打开Startup.cs,修改Configure

public void Configure(IApplicationBuilder app, IHostingEnvironment env,ILogger<Startup> logger)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }

            app.Run(async (context) =>
            {
                await context.Response.WriteAsync("Hello World!");
            });

            app.Use(async (context, next) =>
            {
                logger.LogInformation("M1 Start");
                await context.Response.WriteAsync("Hello World!");
                await next();
                logger.LogInformation("M1 End");
            });

            app.Run(async (context) =>
            {
                logger.LogInformation("M2 Start");
                await context.Response.WriteAsync("Another World!");
                logger.LogInformation("M2 End");
            });

        }

 

3.选择启动方式 FirstCore

技术图片

 

 出现:

技术图片

 

原理:

 

 技术图片

 

参阅:https://v.qq.com/x/page/r0744ix6a9s.html

谢谢Dave

技术图片

 

初识MVC Core(一)

标签:依赖   sed   async   原理   col   developer   login   syn   star   

原文地址:https://www.cnblogs.com/dzw159/p/10549852.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!