最佳答案
为什么这是错误的?
{
public class HomeController : Controller
{
[HttpGet]
public ActionResult Index()
{
Some Code--Some Code---Some Code
return View();
}
[HttpPost]
public ActionResult Index()
{
Some Code--Some Code---Some Code
return View();
}
}
我怎样才能有一个控制器,回答一件事时,“获得”和一个时,是“张贴”?