文件名称:Business.AspNet:这是从Business.Core到ASP.NET的中间件库
文件大小:159KB
文件格式:ZIP
更新时间:2024-05-03 11:35:25
C#
商业AspNet 这是从Business.Core到ASP.NET的中间件库 安装 步骤1:创建一个新的asp.net核心Web空项目,并在Startup.cs中使用中间件 using Business . AspNet ; public void ConfigureServices ( IServiceCollection services ) { // Configure cross domain policy services . AddCors ( options => { options . AddPolicy ( " any " , builder => builder . AllowAnyOrigin (). AllowAnyMethod (). AllowAnyHeader ()); }); services . A