知识养成了思想,思想同时又在融化知识。这篇文章主要讲述asp.netCore3.0 中使用app.UseMvc() 配置路由相关的知识,希望能为你提供帮助。
一、新配置路由策略
在 Asp.Net Core 3.0中默认不再支持app.UserMvc() 方式配置路由 系统。
【asp.netCore3.0 中使用app.UseMvc() 配置路由】而是使用新的模式,点击查看asp.netCore3.0区域和路由配置变化
默认使用的话 会抛出异常:
InvalidOperationException: Endpoint Routing does not support \'IApplicationBuilder.UseMvc(...)\'.
To use \'IApplicationBuilder.UseMvc\' set \'MvcOptions.EnableEndpointRouting = false\' inside \'ConfigureServices(...).
文章图片
二、Asp.Net Core 3.0中 对于app.UseMvc() 还是 支持的。
如果你 习惯了以前配置方式,还是可以使用的。
进需要在 配置服务 中 ConfigureServices 增加mvc支持,并且关闭终点路由。 EnableEndpointRouting=false .
示例代码如下:
public void ConfigureServices(IServiceCollection services) { //配置Mvc + json 序列化 services.AddMvc(options => { options.EnableEndpointRouting = false; }) .SetCompatibilityVersion(CompatibilityVersion.Version_3_0) .AddNewtonsoftJson(options => { options.SerializerSettings.ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Ignore; options.SerializerSettings.DateFormatString = "yyyy-MM-dd HH:mm"; }); } public void Configure(IApplicationBuilder app, IWebHostEnvironment env) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } app.UseStaticFiles(); app.UseAuthorization(); app.UseMvc(routes => { routes.MapRoute( name: "default", template: "{controller=Home}/{action=Index}/{id?}"); }); //app.UseRouting(); //app.UseEndpoints(endpoints => //{ //endpoints.MapControllers(); //}); }
更多:
asp.netCore3.0区域和路由配置变化
在Asp.Net Core 3.0中如何使用 Newtonsoft.Json 库序列化数据
Asp.Net Core Cookie使用,Asp.net Core Cookie操作失效
推荐阅读
- Mapper映射文件
- app性能测试2
- Android 开发基础入门篇: 生成带有签名的apk安装包
- 使用 create-react-app 脚手架搭建 react 项目,释放配置文件且注入 less 依赖
- 第一章 Android初体验
- 安卓其他Windows下的C++网络请求
- android静态intent
- android开发ExpandableListView展开分组时不滚动不顶上去的解决方法
- web APP 开发之踩坑手记