未调用 .NET Core ApiController 方法
.NET Core ApiController methods not called
我使用脚手架创建了一个 API 控制器。
这是我在其中添加的测试方法:
namespace MyApp.Controllers
{
[Route("api/[controller]")]
[ApiController]
public class AuthenticationController : ControllerBase
{
[HttpPost]
public JsonResult VerifyIsLoggedIn()
{
Dictionary<string, bool> result = new Dictionary<string, bool> { { "Authenticated", true} };
return new JsonResult(result);
}
}
}
我的 Program.cs 看起来是这样的:
namespace MyApp
{
public class Program
{
public static void Main(string[] args)
{
CreateHostBuilder(args).Build().Run();
}
public static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
.ConfigureWebHostDefaults(webBuilder =>
{
webBuilder.UseStartup<Startup>();
});
}
}
我 运行 应用程序,获取登录屏幕,设法成功登录,但是当我转到下面的 URL 时,我收到错误消息 "No webpage was found for the web address:"
https://localhost:12345/api/Authentication/VerifyIsLoggedIn
看来我必须对 Program.cs 进行一些更改,但我尝试的一切都没有成功。我该如何解决?
已显示 URL
https://localhost:12345/api/Authentication/VerifyIsLoggedIn
与显示的控制器操作的属性路由模板不匹配(请参阅代码中的注释)
[Route("api/[controller]")]
[ApiController]
public class AuthenticationController : ControllerBase {
//POST api/Authentication
[HttpPost]
public IActionResult VerifyIsLoggedIn() {
var result = new { Authenticated = true };
return Ok(result);
}
}
此外,如果您尝试在浏览器中查看 URL,它将默认为 HTTP GET,而控制器只能处理 HTTP POST 请求。
您需要更新使用的 HTTP 动词和路由模板
[Route("api/[controller]")]
[ApiController]
public class AuthenticationController : ControllerBase {
//GET api/Authentication/VerifyIsLoggedIn
[HttpGet("[action]")]
public IActionResult VerifyIsLoggedIn() {
var result = new { Authenticated = true };
return Ok(result);
}
}
我在创建新的 API 项目时遇到了同样的问题,取消选中 HTTPS 配置框。
我的问题已解决
我使用脚手架创建了一个 API 控制器。 这是我在其中添加的测试方法:
namespace MyApp.Controllers
{
[Route("api/[controller]")]
[ApiController]
public class AuthenticationController : ControllerBase
{
[HttpPost]
public JsonResult VerifyIsLoggedIn()
{
Dictionary<string, bool> result = new Dictionary<string, bool> { { "Authenticated", true} };
return new JsonResult(result);
}
}
}
我的 Program.cs 看起来是这样的:
namespace MyApp
{
public class Program
{
public static void Main(string[] args)
{
CreateHostBuilder(args).Build().Run();
}
public static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
.ConfigureWebHostDefaults(webBuilder =>
{
webBuilder.UseStartup<Startup>();
});
}
}
我 运行 应用程序,获取登录屏幕,设法成功登录,但是当我转到下面的 URL 时,我收到错误消息 "No webpage was found for the web address:"
https://localhost:12345/api/Authentication/VerifyIsLoggedIn
看来我必须对 Program.cs 进行一些更改,但我尝试的一切都没有成功。我该如何解决?
已显示 URL
https://localhost:12345/api/Authentication/VerifyIsLoggedIn
与显示的控制器操作的属性路由模板不匹配(请参阅代码中的注释)
[Route("api/[controller]")]
[ApiController]
public class AuthenticationController : ControllerBase {
//POST api/Authentication
[HttpPost]
public IActionResult VerifyIsLoggedIn() {
var result = new { Authenticated = true };
return Ok(result);
}
}
此外,如果您尝试在浏览器中查看 URL,它将默认为 HTTP GET,而控制器只能处理 HTTP POST 请求。
您需要更新使用的 HTTP 动词和路由模板
[Route("api/[controller]")]
[ApiController]
public class AuthenticationController : ControllerBase {
//GET api/Authentication/VerifyIsLoggedIn
[HttpGet("[action]")]
public IActionResult VerifyIsLoggedIn() {
var result = new { Authenticated = true };
return Ok(result);
}
}
我在创建新的 API 项目时遇到了同样的问题,取消选中 HTTPS 配置框。 我的问题已解决