我正在尝试实现一个编辑页面,以便修改数据库中的数据。不幸的是,我收到以下错误:
参数字典包含参数的空条目
如何解决此问题?
这是我的代码:
控制器:
foo <- function(n , long, control, ...){
match.call()
}
# Example:
a <- foo(n = 30:35, long = c(1, 2, 2, 3, 1,1), control = c(F, T, T, F, F, T))
Global.asax.cs:
public ActionResult Edit(int id)
{
return View();
}
[HttpPost]
public ActionResult Edit(int id, FormCollection collection)
{
try
{
return RedirectToAction("Index");
}
catch
{
return View();
}
}
存储库:
routes.MapRoute
(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new
{
controller = "User",
action = "Index",
id = UrlParameter.Optional
}
);