gpt4 book ai didi

c# - 如何在 .Net 核心 API Controller 中添加扩展方法

转载 作者:行者123 更新时间:2023-12-04 17:44:49 24 4
gpt4 key购买 nike

我必须根据自定义对象的某些属性修改 IActionResult

我正在尝试不同的方式来改变,但都没有成功

public static class ExtensionMethods
{

public static IActionResult Change(this Controller controller, ExternalResponse obj)
{
if (case 1)
{
return Ok(extResp);
}
else if(case 2)
{
return NotFound(extResp);
}
else if(case 31)
{
return Unauthorized();
}
else
{
return BadRequest(extResp);
}
}

public static IActionResult ChangeTwo(this ControllerBase controller, ExternalResponse obj)
{
if (case 1)
{
return Ok(extResp);
}
else if(case 2)
{
return NotFound(extResp);
}
else if(case 31)
{
return Unauthorized();
}
else
{
return BadRequest(extResp);
}
}
}

请建议我能做什么。

最佳答案

其实问题是不能给抽象类添加扩展方法,这里ControllerBase是一个抽象类。 Here这就是为什么你不能有这样的扩展方法。

关于c# - 如何在 .Net 核心 API Controller 中添加扩展方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52625190/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com