欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ASP.NET Core静态文件使用教程(9)

程序员文章站 2023-11-09 12:54:40
在这一章,我们将学习如何使用文件。几乎每个web应用程序都需要一个重要特性:能够从文件系统提供文件(静态文件)。 静态文件像javascript文件、图片、css...

在这一章,我们将学习如何使用文件。几乎每个web应用程序都需要一个重要特性:能够从文件系统提供文件(静态文件)。

  • 静态文件像javascript文件、图片、css文件等,我们asp.net core应用程序可以直接提供给客户。
  • 静态文件通常位于web根(wwwroot)文件夹。
  • 默认情况下,这是我们可以直接从文件系统提供文件的唯一的地方。

 案例

现在让我们通过一个简单的示例来了解我们在我们的应用程序如何提供这些静态文件。

在这里,我们想要向我们的 firstappdemo 应用程序添加一个简单的 html 文件,该 html 文件放在web 根 (wwwroot) 文件夹。在解决方案资源管理器中右键单击wwwroot文件夹并选择add→新项。

ASP.NET Core静态文件使用教程(9)

在中间窗格中,选择 html 页面并称之为 index.html,单击添加按钮。

ASP.NET Core静态文件使用教程(9)

你会看到一个简单的index.html文件。让我们在其中添加一些简单的文本和标题如下所示。

<!doctype html> 
<html> 
 <head> 
 <meta charset="utf-8" /> 
 <title>welcome to asp.net core</title> 
 </head> 
 <body> 
 hello, wolrd! this message is from our first static html file. 
 </body> 
</html>

当您运行应用程序并在浏览器中输入index.html时,您将看到app.run中间件将抛出一个异常,因为目前在我们的应用程序中什么都没有。

ASP.NET Core静态文件使用教程(9)

现在我们的项目中没有中间件会去找文件系统上的任何文件。

为了解决这个问题,通过在解决方案资源管理器中右键单击您的项目并选择管理nuget包进入到nuget包管理器。

ASP.NET Core静态文件使用教程(9)

搜索 microsoft.aspnet.staticfiles,会找到静态文件中间件。让我们安装此 nuget 程序包,现在我们可以在configure方法中注册中间件。

让我们在下面的程序中所示的configure方法中添加 usestaticfiles 中间件。

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.usedeveloperexceptionpage(); app.useruntimeinfopage(); 
  app.usestaticfiles(); 
  
  app.run(async (context) => { 
  throw new system.exception("throw exception"); 
  var msg = configuration["message"]; 
  await context.response.writeasync(msg); 
  }); 
 } 
  
 // entry point for the application. 
 public static void main(string[] args) => webapplication.run<startup>(args); 
 } 
}

除非你通过传入一些不同的配置参数来覆盖选项,否则静态文件会对于一个给定的请求看作是请求路径。这个请求路径是相对于文件系统。

  • 如果静态文件根据url找到一个文件,它将直接返回该文件,而不调用下一个块中间件。
  • 如果没有找到匹配的文件,那么它会继续执行下一个块中间件。

让我们保存startup.cs文件并刷新浏览器。

ASP.NET Core静态文件使用教程(9)

你现在可以看到index.html文件。你放置在wwwroot文件夹下任何地方的任何javascript文件、css文件或者html文件,您都能够在asp.net core中直接当静态文件使用。

  • 在如果你想 让index.html作为您的默认文件,iis一直有这种功能。
  • 你可以给 iis 一个默认文件列表。如果有人访问根目录,在这种情况下,如果 iis 找到命名为 index.html的文件,它就会自动将该文件返回给客户端。
  • 让我们现在开始进行少量更改。首先,我们需要删除强制的错误,然后添加另一块的中间件,这就是 usedefaultfiles。以下是配置方法的实现。
/ this method gets called by the runtime. 
// use this method to configure the http request pipeline. 
public void configure(iapplicationbuilder app) { 
 app.useiisplatformhandler(); 
 app.usedeveloperexceptionpage(); 
 
 app.useruntimeinfopage(); 
 app.usedefaultfiles(); 
 app.usestaticfiles(); 
 
 app.run(async (context) => { 
 var msg = configuration["message"]; 
 await context.response.writeasync(msg); 
 }); 
}

 这段中间件将监听传入的请求,如果请求是根目录,就查看是否有匹配的默认文件。

您可以覆盖这个中间件的选项来告诉它如何匹配默认文件,但index.html是默认情况下的一个默认的文件。

让我们保存 startup.cs 文件并将您的浏览器转到 web 应用程序的根目录。

ASP.NET Core静态文件使用教程(9)

你现在可以看到index.html是默认文件。你安装中间件的顺序是很重要的,因为如果你将usedefaultfiles放置在usestaticfiles之后,你将可能不会得到相同的结果。

如果你想要使用usedefaultfiles和usestaticfiles中间件,你可以使用另一个中间件microsoft.aspnet.staticfiles,它也是nuget包,它是一个服务器中间件。这本质上是以正确的顺序包含了默认文件和静态文件。

// this method gets called by the runtime. 
// use this method to configure the http request pipeline. 
public void configure(iapplicationbuilder app) { 
 app.useiisplatformhandler(); 
 app.usedeveloperexceptionpage(); 
 
 app.useruntimeinfopage(); 
 app. usefileserver(); 
 
 app.run(async (context) => { 
 var msg = configuration["message"]; 
 await context.response.writeasync(msg); 
 }); 
} 

让我们再一次保存 startup.cs 文件。一旦你刷新浏览器,你将看到相同的结果,如下面的屏幕快照所示。

ASP.NET Core静态文件使用教程(9)

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。