title | author | date | CreateTime | categories |
---|---|---|---|---|
当 ASP.NET Core 链接找不到时可能的原因 |
lindexi |
2019-08-26 18:52:28 +0800 |
2019-08-26 15:59:20 +0800 |
我逗比用了最新的 dotnet core 3 的预览版本创建了新的项目,但是我发现我的呆魔项目和 Postman 都找不到链接,此时原因是默认的模板创建的路径和之前版本创建的不相同
在之前版本创建 Controller 时,使用的 Route 是加上了 api
路径的,也就是如下面代码
[Route("api/[controller]")]
public class ResourceController : ControllerBase
所以我就直接使用了 127.0.0.1:5000/api/Resource
去访问我的链接,但是在 dotnet core 3.0.100-preview7-012821 创建的项目里面,默认将 api
去掉,请看下面代码
[ApiController]
[Route("[controller]")]
public class WeatherForecastController : ControllerBase
也就是此时需要使用 127.0.0.1:5000/WeatherForecast
才能访问到
所以在发现找不到链接的时候,请先从各个 Route 开始找