1 Star 0 Fork 0

周平/22软件技术C周平,第三学期大作业

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Startup.cs 1.63 KB
一键复制 编辑 原始数据 按行查看 历史
周平 提交于 2023-12-16 20:23 . 添加项目文件。
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using news.Models.Database;
namespace news
{
public class Startup
{
// 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 https://go.microsoft.com/fwlink/?LinkID=398940
public void ConfigureServices(IServiceCollection services)
{
services.AddControllersWithViews();//新增该行代码,为程序注入MVC服务
services.AddDbContext<newsContext>();
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
app.UseRouting();
app.UseStaticFiles();
app.UseEndpoints(endpoints =>
{
/*endpoints.MapGet("/", async context =>
{
await context.Response.WriteAsync("Hello World!");
});*/
//把原来这行代码修改为以下代码
endpoints.MapControllerRoute(
name: "default",
pattern: "{controller=Home}/{action=Index}/{id?}");
});
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhou--ping/zhouping.git
git@gitee.com:zhou--ping/zhouping.git
zhou--ping
zhouping
22软件技术C周平,第三学期大作业
期末の作业

搜索帮助

0d507c66 1850385 C8b1a773 1850385