我希望将System.Web.Mvc与MVC Web API一起使用。
GET
可以正常使用[RemoteAttribute("Check", "Api/Validation", HttpMethod = "GET", ErrorMessage ="Invalid")]
public string Name { get; set; }
我的API控制器
[HttpGet]
public bool Check(string name)
{
return false;
}
但是,当我在网络电话中进行 HttpMethod =“POST”时,我收到 404错误。
任何解决方案?
答案 0 :(得分:0)