实际上,我有一个应用程序正在使用 WebService 来检索一些客户信息。因此,我正在验证 ActionResult 中的登录信息,例如:
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult ClientLogin(FormCollection collection)
{
if(Client.validate(collection["username"], collection["password"]))
{
Session["username"] = collection["username"];
Session["password"] = collection["password"];
return View("valid");
}
else
{
Session["username"] = "";
Session["password"] = "";
return View("invalid");
}
}
其中 Client.Validate() 是一种基于 POST 用户名和密码上提供的信息返回布尔值的方法
但是我改变了主意,我想在方法的开头使用那个不错的 ActionFilterAttributes ,这样它就会在 Client.validate() 返回 true 时呈现,就像 [Authorize] 一样,但使用我的自定义 web 服务,所以我会有类似的东西:
[AcceptVerbs(HttpVerbs.Post)]
[ValidateAsClient(username=postedUsername,password=postedPassword)]
//Pass Posted username and password to ValidateAsClient Class
//If returns true render the view
public ActionResult ClientLogin()
{
return View('valid')
}
然后在 ValidateAsClient 我会有类似的东西:
public class ValidateAsClient : ActionFilterAttribute
{
public string username { get; set; }
public string password { get; set; }
public Boolean ValidateAsClient()
{
return Client.validate(username,password);
}
}
所以我的问题是,我不知道如何使它工作,因为我不知道如何将 POSTED 信息传递给[ValidateAsClient(username=postedUsername,password=postedPassword)]以及,我怎么能ValidateAsClient 功能是否正常工作?
我希望这很容易理解提前谢谢