asp.net core静态文件使用教程 -k8凯发
在这一章,我们将学习如何使用文件。几乎每个web应用程序都需要一个重要特性:能够从文件系统提供文件(静态文件)。静态文件像javascript文件、图片、css文件等,我们asp。net core应用程序可以直接提供给客户。 静态文件通常位于web根(wwwroot)文件夹。
默认情况下,这是我们可以直接从文件系统提供文件的唯一的地方。案例现在让我们通过一个简单的示例来了解我们在我们的应用程序如何提供这些静态文件。在这里,我们想要向我们的 firstappdemo 应用程序添加一个简单的 html 文件,该 html 文件放在web 根 (wwwroot) 文件夹。
在凯发k8国际手机app下载的解决方案资源管理器中右键单击wwwroot文件夹并选择add→新项。在中间窗格中,选择 html 页面并称之为 index。html,单击添加按钮。你会看到一个简单的index。html文件。让我们在其中添加一些简单的文本和标题如下所示。
html时,您将看到app。run中间件将抛出一个异常,因为目前在我们的应用程序中什么都没有。现在我们的项目中没有中间件会去找文件系统上的任何文件。为了解决这个问题,通过在凯发k8国际手机app下载的解决方案资源管理器中右键单击您的项目并选择管理nuget包进入到nuget包管理器。
搜索 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
这个请求路径是相对于文件系统。如果静态文件根据url找到一个文件,它将直接返回该文件,而不调用下一个块中间件。 如果没有找到匹配的文件,那么它会继续执行下一个块中间件。让我们保存startup。cs文件并刷新浏览器。你现在可以看到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 应用程序的根目录。你现在可以看到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 文件。一旦你刷新浏览器,你将看到相同的结果,如下面的屏幕快照所示。
1.文章《asp.net core静态文件使用教程》援引自互联网,为网友投稿收集整理,仅供学习和研究使用,内容仅代表作者本人观点,与本网站无关,侵删请点击页脚凯发k8国际手机app下载的联系方式。
2.文章《asp.net core静态文件使用教程》仅供读者参考,本网站未对该内容进行证实,对其原创性、真实性、完整性、及时性不作任何保证。