VS2012 mvc4 中[HttpPost]是什么意思?并且为什么要重写这样两个相同的方法?
如题:其中[HttpPost]是什么意思?并且为什么要重写这样两个相同的方法?请不要单单只解释“在Controller中的相应方法上注释表单提交方式为post提交方式有两...
如题:其中[HttpPost]是什么意思?并且为什么要重写这样两个相同的方法?
请不要单单只解释“在Controller中的相应方法上注释表单提交方式为 post提交方式有两种,一种为get,一种为post”,有没有更具体一点的解答?
先谢过各位大神了。 展开
请不要单单只解释“在Controller中的相应方法上注释表单提交方式为 post提交方式有两种,一种为get,一种为post”,有没有更具体一点的解答?
先谢过各位大神了。 展开
1个回答
展开全部
要完成用户登录这个功能,首先要用Get的方法获取一个View,然后要用Post的方法接受提交的表单进行用户登录验证处理。
所以在Controller中会有两个Login action 但是这两个是不一样的,区别就在于GET和POST。
Get action 比较简单,如下:
//
// GET: /Account/Login/
public ActionResult Login()
{
return View();
}
POST action 比较复杂一些,要从Model模型中调用相应的功能,如下:
//
// POST: /Account/Login
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Login(FormCollection collection)
{
try
{
string email = collection["email"];
string password = collection["password"];
password = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(password, "md5");
......
所以在Controller中会有两个Login action 但是这两个是不一样的,区别就在于GET和POST。
Get action 比较简单,如下:
//
// GET: /Account/Login/
public ActionResult Login()
{
return View();
}
POST action 比较复杂一些,要从Model模型中调用相应的功能,如下:
//
// POST: /Account/Login
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Login(FormCollection collection)
{
try
{
string email = collection["email"];
string password = collection["password"];
password = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(password, "md5");
......
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询