您可以看到GET Delete操作方法将 DDW2File 对象传递给查看。是否可以以某种方式将此对象绑定回POST Delete操作方法的ddw2file参数?现在我有空值。
代码片段:
public class DDW2FileController : Controller
{
...
public ActionResult Delete(string fileName)
{
return View(repository.GetFile(fileName));
}
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Delete(DDW2File ddw2file)
{
repository.Delete(file);
return RedirectToAction("Index");
}
}
...
public class DDW2File
{
public string Name { get; set; }
public long Length { get; set; }
}
谢谢!