我该如何在ApiController中将带有“无效用户名”之类的文本的Bad Request异常返回到前端。我的代码:public class FrontEndController : ApiController { public string Test(string value) { if(!isValid(value)) //how do i throw exception with its code (400 in this case) and message ("Invalid username") } }
3 回答
RISEBY
TA贡献1856条经验 获得超5个赞
ApiController上有一个BadRequest方法:
return BadRequest("Invalid username");
这将使用指定的错误消息创建一个ErrorMessageResult(400错误请求)。
- 3 回答
- 0 关注
- 242 浏览
添加回答
举报
0/150
提交
取消