本文介绍了如何在dotnet core Web API中设置起始页面?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我尝试使用dotnet核心Web API构建Web应用程序,但是我不知道如何将index.html设置为起始页,而使用dotnet framework Web API可以轻松完成。我试图使用 app.UseDefaultFiles(); app.UseStaticFiles();
解决此问题,但是,它没有用。
I try to build a web application with dotnet core web api,but i do not know how to set index.html as start page which can be done with dotnet framework web api easily. And i tried to use app.UseDefaultFiles();app.UseStaticFiles();
to solve this problem, however, it did not work.
推荐答案
如果将静态文件用作默认页面,则以下代码可以为您提供帮助。
If you are using a static file as the default page, the following code can help you.
app.UseDefaultFiles(new DefaultFilesOptions { DefaultFileNames = new
List<string> { "index.html" } });
如果使用的是MVC视图,只需添加路由角色。
If you are using the MVC view, just add the routing role.
app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller=Home}/{action=Index}");
});
这篇关于如何在dotnet core Web API中设置起始页面?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!