真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

asp.netcore如何配置

小編給大家分享一下asp.net core如何配置,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

在安鄉(xiāng)等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供做網(wǎng)站、網(wǎng)站設(shè)計 網(wǎng)站設(shè)計制作按需設(shè)計網(wǎng)站,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),成都品牌網(wǎng)站建設(shè),成都全網(wǎng)營銷推廣,外貿(mào)營銷網(wǎng)站建設(shè),安鄉(xiāng)網(wǎng)站建設(shè)費用合理。

Asp.Net Core-配置

  1. Asp.Net Core-配置

我們將討論 ASP.NET Core項目的相關(guān)的配置。在解決方案資源管理器中,您將看到 Startup.cs 文件。如果你有以前版本的 ASP.NET的工作經(jīng)驗,你可能希望看到一個 global.asax 文件,您可以在其中編寫代碼,它是一個編寫程序啟動時立即執(zhí)行的代碼的文件。

  • 你可能也希望看到一個 web.config 文件,該文件包含您的應(yīng)用程序執(zhí)行所需的所有配置參數(shù)。

  • 在 ASP.NET Core中,那些文件都沒了,取而代之的是 Startup.cs文件.

  • Startup.cs里面是一個啟動類文件,并在該類中您可以配置您的應(yīng)用程序甚至配置您的配置資源。

這里是 Startup.cs 文件中的默認實現(xiàn)代碼:

using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Threading.Tasks; 
using Microsoft.AspNetCore.Builder; 
using Microsoft.AspNetCore.Hosting; 
using Microsoft.AspNetCore.Http; 
using Microsoft.Extensions.DependencyInjection; 
using Microsoft.Extensions.Logging;  
namespace FirstAppDemo { 
   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) { 
      }  
       
      // This method gets called by the runtime. Use this method to configure 
      // the HTTP request pipeline.
      public void Configure(IApplicationBuilder app, IHostingEnvironment env, 
         ILoggerFactory loggerFactory) { 
         loggerFactory.AddConsole();  
          
         if (env.IsDevelopment()) { 
            app.UseDeveloperExceptionPage(); 
         }  
         app.Run(async (context) => { 
            await context.Response.WriteAsync("Hello World!"); 
         }); 
      } 
   } 
}

在啟動類中,我們的大部分工作將設(shè)計有兩種方法。Configure 方法是構(gòu)建HTTP處理管道的地方。

  • 這定義了應(yīng)用程序如何響應(yīng)請求。目前該應(yīng)用程序只能說“Hello World!”如果我們希望該應(yīng)用程序具有不同的行為,我們需要通過添加額外的代碼到這個Configure方法中來改變周圍的管道。

  • 例如,如果我們想要提供一個 index.html 文件的靜態(tài)文件,我們將需要在Configure方法中添加一些代碼。

  • 你也可以有一個錯誤頁面或Asp.Net Controller的異常請求的路由;這兩個場景還需要在這個配置方法中做一些工作。

  • 在啟動類中,您還將看到 ConfigureServices() 方法。這可幫助您配置您的應(yīng)用程序的組件。

現(xiàn)在,我們有一個硬編碼的字符串“Hello World !”來響應(yīng)每個請求。我們不希望每個請求都是硬編碼的字符串,我們想從一些組件加載響應(yīng)字符串。

  • 其他組件可能會從數(shù)據(jù)庫加載文本,或從一個web服務(wù)或一個JSON文件,我們不管這它是從什么地方加載。

  • 我們會設(shè)置一個場景,這樣我們就沒有這個硬編碼字符串了。

在解決方案資源管理器中,右鍵單擊您的項目節(jié)點并選擇Add→New Item。

asp.net core如何配置

在左側(cè)窗格中,選擇Installed → Code,然后在中間窗格中,選擇JSON文件。給這個文件取名為AppSetting.json,并單擊Add按鈕如上面的截圖。

asp.net core如何配置

讓我們在AppSettings中添加以下代碼。

{ 
   "message": "Hello, World! this message is from configuration file..." 
}

現(xiàn)在我們需要從 Startup.cs 文件訪問此消息。這里是 Startup.cs 文件從 JSON 文件閱讀上面的消息的實現(xiàn)代碼。

using Microsoft.AspNet.Builder; 
using Microsoft.AspNet.Hosting; 
using Microsoft.AspNet.Http; 
using Microsoft.Extensions.DependencyInjection; 
using Microsoft.Extensions.Configuration;  
namespace FirstAppDemo { 
   public class Startup { 
      public Startup() { 
         var builder = new ConfigurationBuilder()   
            .AddJsonFile("AppSettings.json"); 
         Configuration = builder.Build(); 
      }  
      public IConfiguration Configuration { get; set; }  
       
      // 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) { 
      }  
       
      // This method gets called by the runtime.  
      // Use this method to configure the HTTP request pipeline. 
      public void Configure(IApplicationBuilder app) {
         app.UseIISPlatformHandler();  
         app.Run(async (context) => { 
            var msg = Configuration["message"]; 
            await context.Response.WriteAsync(msg); 
         });  
      }  
         
      // Entry point for the application. 
      public static void Main(string[] args) =7gt; WebApplication.Run(args); 
   } 
}

讓我們現(xiàn)在運行應(yīng)用程序。一旦您運行該應(yīng)用程序,它會產(chǎn)生下面的輸出。

asp.net core如何配置

以上是“asp.net core如何配置”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


文章名稱:asp.netcore如何配置
文章源于:http://weahome.cn/article/pdjcgs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部