如何将具有错误说明(无效的用户名或无效的密码)

我该如何在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")

        }

    }


慕运维8079593
浏览 243回答 3
3回答

RISEBY

ApiController上有一个BadRequest方法:return BadRequest("Invalid username");这将使用指定的错误消息创建一个ErrorMessageResult(400错误请求)。
打开App,查看更多内容
随时随地看视频慕课网APP